Skip to content

Commit 4d061b4

Browse files
committed
Add appengine-api-1.0-sdk dep to users sample.
The users sample and the taskqueue-push sample were depending on the appengine-maven-plugin, which used to depend transitively on the appengine-api-1.0-sdk package, but it does not in the latest version. These samples should not have been using the plugin as a dependency, anyway.
1 parent 1e70ee2 commit 4d061b4

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

appengine/taskqueue-push/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,6 @@ Copyright 2016 Google Inc. All Rights Reserved.
2828
<relativePath>../..</relativePath>
2929
</parent>
3030
<dependencies>
31-
<dependency>
32-
<groupId>com.google.appengine</groupId>
33-
<artifactId>appengine-maven-plugin</artifactId>
34-
<version>${appengine.sdk.version}</version>
35-
</dependency>
3631
<dependency>
3732
<groupId>javax.servlet</groupId>
3833
<artifactId>servlet-api</artifactId>

appengine/users/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ Copyright 2015 Google Inc. All Rights Reserved.
2929
<relativePath>../..</relativePath>
3030
</parent>
3131
<dependencies>
32-
<dependency>
33-
<groupId>com.google.appengine</groupId>
34-
<artifactId>appengine-maven-plugin</artifactId>
35-
<version>${appengine.sdk.version}</version>
36-
</dependency>
37-
<dependency>
32+
<dependency>
33+
<groupId>com.google.appengine</groupId>
34+
<artifactId>appengine-api-1.0-sdk</artifactId>
35+
<version>${appengine.sdk.version}</version>
36+
</dependency>
37+
<dependency>
3838
<groupId>com.google.guava</groupId>
3939
<artifactId>guava</artifactId>
4040
<version>19.0</version>

0 commit comments

Comments
 (0)