Skip to content

Commit 57ed9d7

Browse files
committed
Consolidated taskqueue samples into a single appengine folder.
1 parent dfd7778 commit 57ed9d7

File tree

25 files changed

+40
-3
lines changed

25 files changed

+40
-3
lines changed

appengine/pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@
8282
<module>sockets</module>
8383

8484
<module>static-files</module>
85-
86-
<module>taskqueue-push</module>
85+
<module>taskqueue</module>
8786
<module>twilio</module>
8887
<module>urlfetch</module>
8988
<module>users</module>

taskqueue/deferred/pom.xml renamed to appengine/taskqueue/defer-samples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<properties>
3232
<maven.compiler.target>1.7</maven.compiler.target>
3333
<maven.compiler.source>1.7</maven.compiler.source>
34-
<appengine.sdk.version>1.9.59</appengine.sdk.version> <!-- TODO: MOVE TO /appengine -->
34+
<appengine.sdk.version>1.9.59</appengine.sdk.version>
3535
<codehaus-versions-maven-plugin-version>2.5</codehaus-versions-maven-plugin-version>
3636
<maven-war-plugin-version>3.2.0</maven-war-plugin-version>
3737
</properties>

appengine/taskqueue/pom.xml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!--
2+
Copyright 2016 Google Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
<project>
17+
<modelVersion>4.0.0</modelVersion>
18+
<version>1.0.0</version>
19+
20+
<groupId>com.google.cloud</groupId>
21+
<artifactId>appengine-doc-samples</artifactId>
22+
<packaging>pom</packaging>
23+
24+
<!-- Parent POM defines common plugins and properties. -->
25+
<parent>
26+
<artifactId>doc-samples</artifactId>
27+
<groupId>com.google.cloud</groupId>
28+
<version>1.0.0</version>
29+
<relativePath>..</relativePath>
30+
</parent>
31+
32+
<modules>
33+
<module>push-samples</module>
34+
<module>pull-samples</module>
35+
<module>defer-samples</module>
36+
</modules>
37+
38+
</project>

0 commit comments

Comments
 (0)