-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
102 lines (98 loc) · 4.32 KB
/
pom.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<project 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/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tw.geeknight</groupId>
<artifactId>BigDataWorkshop</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<ver.hadoop>2.6.0</ver.hadoop>
<ver.hadoop.core>1.2.1</ver.hadoop.core>
<ver.spark>1.6.0</ver.spark>
<class>com.tw.example.SparkExample</class>
<server>10.133.124.48</server>
<command.prefix>/usr/local/spark/bin/spark-submit --num-executors 1 --master spark://Geeknight:7077</command.prefix>
<command.jar>${project.artifactId}-${project.version}.jar</command.jar>
<command.class>--class ${class}</command.class>
<command.jarclass>${command.class} ${command.jar}</command.jarclass>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.10</artifactId>
<version>${ver.spark}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming-twitter_2.10</artifactId>
<version>${ver.spark}</version>
<scope>provided</scope>
</dependency>
<dependency> <!-- Spark streaming dependency -->
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_2.10</artifactId>
<version>${ver.spark}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>Deploying to server: ${server}</echo>
<taskdef classname="org.apache.tools.ant.taskdefs.optional.ssh.Scp" name="scp" />
<scp file="${project.build.directory}/${project.artifactId}-${project.version}.jar"
password="${password}"
todir="${username}@${server}:~/"
trust="true"
/>
<sshexec command="source /usr/local/spark/conf/spark-env.sh; ${command.prefix} ${command.jarclass} ${args}"
host="${server}"
password="${password}"
trust="true"
username="${username}">
</sshexec>
</target>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.53</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-jsch</artifactId>
<version>1.9.6</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>