forked from NetEase-Object-Storage/nos-java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly-sdk.xml
33 lines (33 loc) · 1.09 KB
/
assembly-sdk.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
<!--<br/> <br/> Code highlighting produced by Actipro CodeHighlighter (freeware)<br/>
http://www.CodeHighlighter.com/<br/> <br/> -->
<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>sdk</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>${project.artifactId}-${project.version}/lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>Samples</directory>
<outputDirectory>${project.artifactId}-${project.version}/samples</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>${project.artifactId}-${project.version}/third-party</outputDirectory>
<scope> runtime </scope>
<excludes>
<exclude>nos*.jar</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>