-
Notifications
You must be signed in to change notification settings - Fork 13
/
assembly-bin-javahl.xml
37 lines (36 loc) · 1.19 KB
/
assembly-bin-javahl.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
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>bin-javahl</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<moduleSets>
<moduleSet>
<includes>
<include>org.sventon.sventon-webapp.javahl:svn</include>
</includes>
<binaries>
<outputFileNameMapping>${module.artifactId}.${module.extension}</outputFileNameMapping>
<includeDependencies>false</includeDependencies>
<unpack>false</unpack>
</binaries>
</moduleSet>
</moduleSets>
<fileSets>
<fileSet>
<includes>
<include>licenses/**</include>
<include>changes.txt</include>
<include>readme.txt</include>
<include>upgrade.txt</include>
<include>LICENSE.txt</include>
<include>gpl.txt</include>
</includes>
<excludes>
<exclude>licenses/svnkit/</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>