-
Notifications
You must be signed in to change notification settings - Fork 1
/
release.xml
42 lines (41 loc) · 1.5 KB
/
release.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
<!--
Maven Assembly Plugin
Creates a Release Package with our Release Binary (the dataloader jar file). For more info, see RELEASE.md.
-->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>release</id>
<fileSets>
<fileSet>
<!--data directory is intentionally being left empty-->
<directory>data</directory>
<excludes>
<exclude>*</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>examples</directory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
<fileSet>
<includes>
<include>README.md</include>
<include>LICENSE</include>
<include>CHANGELOG.md</include>
<include>${project.name}</include>
<include>${project.name}.bat</include>
<include>${project.name}.properties</include>
</includes>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>${project.name}-${project.version}.jar</include>
</includes>
</fileSet>
</fileSets>
</assembly>