This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdist.xml
48 lines (46 loc) · 1.72 KB
/
dist.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
47
48
<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>framework</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>/</baseDirectory>
<fileSets>
<fileSet>
<directory>target/zip/</directory>
<outputDirectory></outputDirectory>
<includes>
<include>**/*.*</include>
<include>**/LICENSE</include>
<include>**/README</include>
</includes>
</fileSet>
<fileSet>
<directory>target/zip/</directory>
<outputDirectory></outputDirectory>
<excludes>
<exclude>**/*.*</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/README</exclude>
</excludes>
<fileMode>0755</fileMode>
</fileSet>
<fileSet>
<directory>target/dependency/</directory>
<outputDirectory>dependencies</outputDirectory>
<includes>
<include>**/*.*</include>
</includes>
</fileSet>
<fileSet>
<directory>target/dependency/</directory>
<outputDirectory>dependencies</outputDirectory>
<excludes>
<exclude>**/*.*</exclude>
</excludes>
<fileMode>0755</fileMode>
</fileSet>
</fileSets>
</assembly>l