Skip to content

Commit

Permalink
Fix error deploying hello world.
Browse files Browse the repository at this point in the history
The `appengine.version` overrides the version tag for the instance
rather than the SDK version. Changing to `appengine.sdk.version` fixes
the errors we encounter when deploying.
  • Loading branch information
tswast committed Mar 3, 2016
1 parent 628479d commit afb0f97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<packaging>pom</packaging>

<properties>
<appengine.version>1.9.19</appengine.version>
<appengine.sdk.version>1.9.19</appengine.sdk.version>
<appengine.app.version>1</appengine.app.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.http.version>1.19.0</project.http.version>
Expand Down Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>${appengine.version}</version>
<version>${appengine.sdk.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down Expand Up @@ -138,13 +138,13 @@
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-testing</artifactId>
<version>${appengine.version}</version>
<version>${appengine.sdk.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-stubs</artifactId>
<version>${appengine.version}</version>
<version>${appengine.sdk.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit afb0f97

Please sign in to comment.