Skip to content

Commit 428d6fb

Browse files
authored
remove servlet 3.1.0 mention, support 2.5 (GoogleCloudPlatform#310)
1 parent ba6217b commit 428d6fb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

appengine/helloworld-new-plugins/build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ apply plugin: 'java' // standard Java tasks
3535
apply plugin: 'war' // standard Web Archive plugin
3636
apply plugin: 'com.google.cloud.tools.appengine' // App Engine tasks
3737

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'
4140
compile 'com.google.appengine:appengine:+'
4241
// Add your dependencies here.
4342

@@ -47,7 +46,7 @@ dependencies { // Servlet for App Engine Standard -- only one of these need to b
4746
model {
4847
appengine { // App Engine tasks configuration
4948
run { // local (dev_appserver) configuration (standard environments only)
50-
port = 8080 // default
49+
port = 8080 // default
5150
}
5251

5352
deploy { // deploy configuration

0 commit comments

Comments
 (0)