FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-docs-samples/managed_vms/sparkjava/pom.xml at master · dpebot/java-docs-samples · GitHub
dpebot
/
java-docs-samples
Public
forked from
GoogleCloudPlatform/java-docs-samples
Notifications
You must be signed in to change notification settings
Fork
1
Star
6
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java-docs-samples
/
managed_vms
/
sparkjava
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
104 lines (101 loc) · 3.06 KB
Breadcrumbs
java-docs-samples
/
managed_vms
/
sparkjava
/
pom.xml
Copy path
File metadata and controls
104 lines (101 loc) · 3.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
103
104
<?
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.google.appengine.sparkdemo</
groupId
>
<
artifactId
>managed-vms-spark</
artifactId
>
<
version
>1.0</
version
>
<
parent
>
<
artifactId
>doc-samples</
artifactId
>
<
groupId
>com.google.cloud</
groupId
>
<
version
>1.0.0</
version
>
<
relativePath
>../..</
relativePath
>
</
parent
>
<
dependencies
>
<
dependency
>
<
groupId
>com.sparkjava</
groupId
>
<
artifactId
>spark-core</
artifactId
>
<
version
>2.3</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.slf4j</
groupId
>
<
artifactId
>slf4j-simple</
artifactId
>
<
version
>1.7.12</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.code.gson</
groupId
>
<
artifactId
>gson</
artifactId
>
<
version
>2.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>4.12</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.cloud</
groupId
>
<
artifactId
>gcloud-java</
artifactId
>
<
version
>0.2.0</
version
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<!--
// [START maven]
-->
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>2.5.1</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
</
configuration
>
</
plugin
>
<!--
// [END maven]
-->
<!--
// [START assembly]
-->
<
plugin
>
<
artifactId
>maven-assembly-plugin</
artifactId
>
<
executions
>
<
execution
>
<
phase
>package</
phase
>
<
goals
>
<
goal
>single</
goal
>
</
goals
>
</
execution
>
</
executions
>
<
configuration
>
<
descriptorRefs
>
<
descriptorRef
>jar-with-dependencies</
descriptorRef
>
</
descriptorRefs
>
<
archive
>
<
manifest
>
<
mainClass
>com.google.appengine.sparkdemo.Main</
mainClass
>
</
manifest
>
</
archive
>
</
configuration
>
</
plugin
>
<!--
// [END assembly]
-->
<!--
// [START exec]
-->
<
plugin
>
<
groupId
>org.codehaus.mojo</
groupId
>
<
artifactId
>exec-maven-plugin</
artifactId
>
<
version
>1.4.0</
version
>
<
configuration
>
<
mainClass
>com.google.appengine.sparkdemo.Main</
mainClass
>
<
arguments
>
<
argument
>-jar</
argument
>
<
argument
>target/sparkdemo-1.0-jar-with-dependencies.jar</
argument
>
</
arguments
>
</
configuration
>
</
plugin
>
<!--
// [END exec]
-->
<
plugin
>
<
groupId
>com.google.appengine</
groupId
>
<
artifactId
>gcloud-maven-plugin</
artifactId
>
<
version
>2.0.9.106.v20160420</
version
>
<
configuration
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL