File tree 2 files changed +9
-5
lines changed
appengine/helloworld-new-plugins
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ buildscript {
11
11
repositories {
12
12
maven {
13
13
url ' https://maven-central.storage.googleapis.com' // Google's mirror of Maven Central
14
- // url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Reposiotry
14
+ // url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Reposiotry (if needed)
15
15
}
16
16
jcenter()
17
17
mavenCentral()
Original file line number Diff line number Diff line change @@ -21,17 +21,20 @@ Copyright 2015 Google Inc. All Rights Reserved.
21
21
<groupId >com.example.appengine</groupId >
22
22
<artifactId >appengine-helloworld-newplugins</artifactId >
23
23
24
- <properties >
25
- <maven .compiler.target>1.7</maven .compiler.target>
26
- <maven .compiler.source>1.7</maven .compiler.source>
27
- </properties >
24
+ <!-- [START compiler] -->
25
+ <properties > <!-- App Engine Standard currently requires Java 7 -->
26
+ <maven .compiler.target>1.7</maven .compiler.target>
27
+ <maven .compiler.source>1.7</maven .compiler.source>
28
+ </properties >
29
+ <!-- [END compiler] -->
28
30
29
31
<parent >
30
32
<groupId >com.google.cloud</groupId >
31
33
<artifactId >doc-samples</artifactId >
32
34
<version >1.0.0</version >
33
35
<relativePath >../..</relativePath >
34
36
</parent >
37
+
35
38
<dependencies >
36
39
<dependency >
37
40
<groupId >javax.servlet</groupId >
@@ -40,6 +43,7 @@ Copyright 2015 Google Inc. All Rights Reserved.
40
43
<scope >provided</scope >
41
44
</dependency >
42
45
</dependencies >
46
+
43
47
<build >
44
48
<!-- for hot reload of the web application -->
45
49
<outputDirectory >${project.build.directory} /${project.build.finalName} /WEB-INF/classes</outputDirectory >
You can’t perform that action at this time.
0 commit comments