-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly-descriptor.xml
46 lines (46 loc) · 2 KB
/
assembly-descriptor.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>assembly</id>
<formats>
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<includes>
<include>${artifact}</include>
</includes>
<outputFileNameMapping>${artifact.artifactId}-${artifact.baseVersion}.${artifact.extension}</outputFileNameMapping>
<outputDirectory>./java/lib</outputDirectory>
</dependencySet>
<dependencySet>
<useTransitiveFiltering>true</useTransitiveFiltering>
<includes>
<include>net.algart:algart-tiff</include>
</includes>
<excludes>
<!-- Excluding AlgART: it is a standard library, provided by scichains-core
(It is excluded as a result of dependence on scichains-core
which turns off loading AlgART as a part of algart-tiff;
but just in case we exclude it here explicitly.) -->
<exclude>net.algart:algart:*</exclude>
</excludes>
<outputFileNameMapping>${artifact.artifactId}-${artifact.baseVersion}.${artifact.extension}</outputFileNameMapping>
<outputDirectory>./java/lib</outputDirectory>
</dependencySet>
</dependencySets>
<files>
<file>
<source>${project.build.directory}/classes/extension.json</source>
<!-- appeared here with filtering by resource/includes section in the main pom.xml -->
<outputDirectory>./</outputDirectory>
</file>
</files>
<fileSets>
<fileSet>
<directory>${project.basedir}/build/java</directory>
<outputDirectory>./java</outputDirectory>
</fileSet>
</fileSets>
</assembly>