FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-docs-samples/appengine-java11/cloudsql/pom.xml at main · addianto/java-docs-samples · GitHub
addianto
/
java-docs-samples
Public
forked from
GoogleCloudPlatform/java-docs-samples
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java-docs-samples
/
appengine-java11
/
cloudsql
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
167 lines (158 loc) · 5.29 KB
Breadcrumbs
java-docs-samples
/
appengine-java11
/
cloudsql
/
pom.xml
Copy path
File metadata and controls
167 lines (158 loc) · 5.29 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<!--
Copyright 2019 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<
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
>
<
packaging
>war</
packaging
>
<
groupId
>com.example.appengine</
groupId
>
<
artifactId
>cloudsql</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<!--
The parent pom defines common style checks and testing strategies for our samples.
Removing or replacing it should not affect the execution of the samples in anyway.
-->
<
parent
>
<
groupId
>com.google.cloud.samples</
groupId
>
<
artifactId
>shared-configuration</
artifactId
>
<
version
>1.2.0</
version
>
</
parent
>
<
properties
>
<
maven
.compiler.target>11</
maven
.compiler.target>
<
maven
.compiler.source>11</
maven
.compiler.source>
<
failOnMissingWebXml
>false</
failOnMissingWebXml
>
</
properties
>
<!--
All dependencies are scoped as provided.
Dependent-jars are created and added to
${project.build.directory}/appengine-staging
-->
<
dependencies
>
<!--
Dependency needs to be locally install from directory
-->
<!--
`java-docs-samples/appengine-java11/appengine-simple-jetty-main'
-->
<!--
See the README for more information
-->
<
dependency
>
<
groupId
>com.example.appengine</
groupId
>
<
artifactId
>simple-jetty-main</
artifactId
>
<
version
>1</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>javax.servlet</
groupId
>
<
artifactId
>javax.servlet-api</
artifactId
>
<
version
>3.1.0</
version
>
<
type
>jar</
type
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>javax.servlet</
groupId
>
<
artifactId
>jstl</
artifactId
>
<
version
>1.2</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.slf4j</
groupId
>
<
artifactId
>slf4j-simple</
artifactId
>
<
version
>2.0.11</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<!--
Dependencies for Cloud SQL
-->
<
dependency
>
<
groupId
>mysql</
groupId
>
<
artifactId
>mysql-connector-java</
artifactId
>
<
version
>8.0.33</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.cloud.sql</
groupId
>
<
artifactId
>mysql-socket-factory-connector-j-8</
artifactId
>
<
version
>1.15.1</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.zaxxer</
groupId
>
<
artifactId
>HikariCP</
artifactId
>
<
version
>5.1.0</
version
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.mockito</
groupId
>
<
artifactId
>mockito-core</
artifactId
>
<
version
>5.9.0</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>4.13.2</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.truth</
groupId
>
<
artifactId
>truth</
artifactId
>
<
version
>1.2.0</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
finalName
>cloudsql</
finalName
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-war-plugin</
artifactId
>
<
version
>3.4.0</
version
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-dependency-plugin</
artifactId
>
<
version
>3.6.1</
version
>
<
executions
>
<
execution
>
<
id
>copy</
id
>
<
phase
>prepare-package</
phase
>
<
goals
>
<
goal
>copy-dependencies</
goal
>
</
goals
>
<
configuration
>
<
outputDirectory
>
${project.build.directory}
/appengine-staging
</
outputDirectory
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
artifactId
>maven-resources-plugin</
artifactId
>
<
version
>3.3.1</
version
>
<
executions
>
<
execution
>
<
id
>copy-resources</
id
>
<
phase
>install</
phase
>
<
goals
>
<
goal
>copy-resources</
goal
>
</
goals
>
<
configuration
>
<
outputDirectory
>
${project.build.directory}
/appengine-staging/cprof</
outputDirectory
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>com.google.cloud.tools</
groupId
>
<
artifactId
>appengine-maven-plugin</
artifactId
>
<
version
>2.5.1</
version
>
<
configuration
>
<
projectId
>GCLOUD_CONFIG</
projectId
>
<
version
>cloudsql</
version
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL