Skip to content

Commit 54bb50b

Browse files
committed
add distro zip creation, missing assembly
1 parent d81bc20 commit 54bb50b

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

distro-zip.xml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
4+
<id>distro zip</id>
5+
<formats>
6+
<format>zip</format>
7+
</formats>
8+
<includeBaseDirectory>false</includeBaseDirectory>
9+
<dependencySets>
10+
<dependencySet>
11+
<!-- place extension jar in folder root to be parsed by OJ -->
12+
<outputDirectory>/</outputDirectory>
13+
<useTransitiveFiltering>false</useTransitiveFiltering>
14+
<includes>
15+
<include>${artifact}</include>
16+
</includes>
17+
</dependencySet>
18+
<dependencySet>
19+
<!-- place deps in a extension specific subfolder -->
20+
<outputDirectory>/${project.build.finalName}</outputDirectory>
21+
<unpack>false</unpack>
22+
<scope>runtime</scope>
23+
<useTransitiveFiltering>true</useTransitiveFiltering>
24+
<useProjectArtifact>false</useProjectArtifact>
25+
<excludes>
26+
<exclude>org.openjump:OpenJUMP</exclude>
27+
</excludes>
28+
</dependencySet>
29+
</dependencySets>
30+
</assembly>

0 commit comments

Comments
 (0)