-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathassembly.xml
More file actions
34 lines (34 loc) · 921 Bytes
/
assembly.xml
File metadata and controls
34 lines (34 loc) · 921 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
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<assembly>
<formats>
<format>zip</format>
</formats>
<dependencySets>
<dependencySet>
<!--Include runtime dependencies-->
<outputDirectory>dependencies</outputDirectory>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory />
<includes>
<include>apidocs/**/*</include>
<include>${project.artifactId}-${project.version}.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory></outputDirectory>
<includes>
<include>LICENSE*</include>
<include>README*</include>
<include>ACKNOWLEDGEMENTS*</include>
<include>JavaSDK*</include>
<include>JavaSDK_Documentation.pdf</include>
</includes>
</fileSet>
</fileSets>
</assembly>