-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembly.xml
More file actions
39 lines (39 loc) · 1.47 KB
/
assembly.xml
File metadata and controls
39 lines (39 loc) · 1.47 KB
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
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>dist</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src/main/resources/bin</directory>
<outputDirectory>crypto-tracker/</outputDirectory>
<includes>
<include>**/**/*</include>
</includes>
<fileMode>755</fileMode>
</fileSet>
<fileSet>
<directory>src/main/resources/hadoop_home</directory>
<outputDirectory>crypto-tracker/hadoop_home</outputDirectory>
<includes>
<include>**/**/*</include>
</includes>
<fileMode>755</fileMode>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory>crypto-tracker/lib</outputDirectory>
<includes>
<include>${project.artifactId}*.jar</include>
</includes>
<excludes>
<exclude>*-sources.jar</exclude>
<exclude>*-javadoc.jar</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>