-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathassembly.xml
More file actions
26 lines (26 loc) · 794 Bytes
/
assembly.xml
File metadata and controls
26 lines (26 loc) · 794 Bytes
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
<assembly xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.0.0.xsd">
<id>bin</id>
<formats>
<!-- zip,tar,tar.gz,tar.bz2,jar,dir,war -->
<format>zip</format>
</formats>
<dependencySets>
<!-- 依赖包的输出路径 -->
<dependencySet>
<outputDirectory>/lib</outputDirectory>
</dependencySet>
</dependencySets>
<!-- 需要打包的文件集 -->
<fileSets>
<fileSet>
<directory>/res</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>/output/**</exclude>
<exclude>/lib/**</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>