forked from pengpan/91160-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly.xml
22 lines (22 loc) · 838 Bytes
/
assembly.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>${project.version}</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<files>
<file>
<source>target/${project.artifactId}-jar-with-dependencies.jar</source>
<outputDirectory>.</outputDirectory>
<destName>${project.artifactId}.jar</destName>
</file>
</files>
<fileSets>
<fileSet>
<directory>${project.basedir}/src/main/resources/bin</directory>
<outputDirectory>.</outputDirectory>
</fileSet>
</fileSets>
</assembly>