-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassembly.xml
44 lines (35 loc) · 1.07 KB
/
assembly.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
<?xml version="1.0" encoding="UTF-8"?>
<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>full</id><!-- will be end part of target file name -->
<formats>
<format>zip</format>
</formats>
<baseDirectory>/</baseDirectory>
<fileSets>
<!-- shell scripts must have LF as EOL -->
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
<include>**/*.sh</include>
</includes>
<lineEnding>unix</lineEnding>
<filtered>true</filtered>
<outputDirectory>./</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.build.directory}/libs</directory>
<filtered>false</filtered>
<outputDirectory>./libs</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.build.directory}</directory>
<includes>
<include>*.jar</include>
</includes>
<filtered>false</filtered>
<outputDirectory>./</outputDirectory>
</fileSet>
</fileSets>
</assembly>