Skip to content

Commit

Permalink
No model for Gradle (#344)
Browse files Browse the repository at this point in the history
1. Remove the model component for Gradle
2. update to latest maven plugin as well.
  • Loading branch information
lesv authored Sep 26, 2016
1 parent e052f90 commit c51703b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 26 deletions.
32 changes: 15 additions & 17 deletions appengine/helloworld-new-plugins/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright 2015 Google Inc. All Rights Reserved.
//
//
// 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.
Expand All @@ -23,15 +23,15 @@ buildscript { // Configuration for building
}

repositories { // repositories for Jar's you access in your code
maven {
maven {
url 'https://maven-central.storage.googleapis.com' // Google's mirror of Maven Central
// url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Reposiotry (if needed)
// url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Repository (if needed)
}
jcenter()
mavenCentral()
}

apply plugin: 'java' // standard Java tasks
apply plugin: 'java' // standard Java tasks
apply plugin: 'war' // standard Web Archive plugin
apply plugin: 'com.google.cloud.tools.appengine' // App Engine tasks

Expand All @@ -43,23 +43,21 @@ dependencies {
}

// [START model]
model {
appengine { // App Engine tasks configuration
run { // local (dev_appserver) configuration (standard environments only)
port = 8080 // default
}
appengine { // App Engine tasks configuration
run { // local (dev_appserver) configuration (standard environments only)
port = 8080 // default
}

deploy { // deploy configuration
stopPreviousVersion = true // default - stop the current version
promote = true // default - & make this the current version
}
deploy { // deploy configuration
stopPreviousVersion = true // default - stop the current version
promote = true // default - & make this the current version
}
}
// [END model]

group = 'com.example.appengine' // Generated output GroupId
version = '1.0-SNAPSHOT' // Version in generated output

sourceCompatibility = JavaVersion.VERSION_1_7 // App Engine Standard uses Java 7
targetCompatibility = JavaVersion.VERSION_1_7 // App Engine Standard uses Java 7
sourceCompatibility = 1.7 // App Engine Standard uses Java 7
targetCompatibility = 1.7 // App Engine Standard uses Java 7
// [END gradle]
3 changes: 2 additions & 1 deletion appengine/helloworld-new-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Copyright 2015 Google Inc. All Rights Reserved.
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
Expand All @@ -52,7 +53,7 @@ Copyright 2015 Google Inc. All Rights Reserved.
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>0.1.1-beta</version>
<version>0.1.2</version>
<configuration>
<!-- dev appserver configuration (standard environment only) -->
<!--
Expand Down
13 changes: 5 additions & 8 deletions managed_vms/helloworld/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright 2016 Google Inc. All Rights Reserved.
//
//
// 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.
Expand Down Expand Up @@ -49,20 +49,17 @@ gretty {
// [END gretty]

// [START model]
model {
appengine {

deploy { // deploy configuration
stopPreviousVersion = true // default - stop the current version
promote = true // default - & make this the current version
}
}
}
// [END model]

group = 'com.example.appengine' // Generated output GroupId
version = '1.0-SNAPSHOT' // Version in generated output

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = 1.8
targetCompatibility = 1.8
// [END gradle]

0 comments on commit c51703b

Please sign in to comment.