File tree 1 file changed +3
-4
lines changed
appengine/helloworld-new-plugins
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ apply plugin: 'java' // standard Java tasks
35
35
apply plugin : ' war' // standard Web Archive plugin
36
36
apply plugin : ' com.google.cloud.tools.appengine' // App Engine tasks
37
37
38
- dependencies { // Servlet for App Engine Standard -- only one of these need to be uncommented.
39
- // providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
40
- providedCompile ' javax.servlet:javax.servlet-api:3.1.0' // if java_quickstart in appengine-web.xml
38
+ dependencies {
39
+ providedCompile group : ' javax.servlet' , name : ' servlet-api' , version :' 2.5'
41
40
compile ' com.google.appengine:appengine:+'
42
41
// Add your dependencies here.
43
42
@@ -47,7 +46,7 @@ dependencies { // Servlet for App Engine Standard -- only one of these need to b
47
46
model {
48
47
appengine { // App Engine tasks configuration
49
48
run { // local (dev_appserver) configuration (standard environments only)
50
- port = 8080 // default
49
+ port = 8080 // default
51
50
}
52
51
53
52
deploy { // deploy configuration
You can’t perform that action at this time.
0 commit comments