forked from DigitalPebble/behemoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hadoop-job.xml
34 lines (34 loc) · 1.26 KB
/
hadoop-job.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
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>job</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<unpack>false</unpack>
<scope>runtime</scope>
<outputDirectory>lib</outputDirectory>
<excludes>
<exclude>${artifact.groupId}:${artifact.artifactId}</exclude>
<exclude>org.apache.mahout:mahout-core</exclude>
<exclude>org.apache.mahout:mahout-collections</exclude>
<exclude>org.apache.mahout:mahout-math</exclude>
<exclude>com.digitalpebble.behemoth:behemoth-core</exclude>
</excludes>
</dependencySet>
<dependencySet>
<unpack>true</unpack>
<includes>
<include>${artifact.groupId}:${artifact.artifactId}</include>
<include>org.apache.mahout:mahout-core</include>
<include>org.apache.mahout:mahout-collections</include>
<include>org.apache.mahout:mahout-math</include>
<include>com.digitalpebble.behemoth:behemoth-core</include>
</includes>
</dependencySet>
</dependencySets>
</assembly>