Skip to content

Commit d9115e2

Browse files
author
Shun Fan
committed
Update maven plugin version
Add tags to mailgun
1 parent 49ceff8 commit d9115e2

File tree

14 files changed

+17
-13
lines changed

14 files changed

+17
-13
lines changed

appengine/analytics/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>com.google.appengine</groupId>
4646
<artifactId>gcloud-maven-plugin</artifactId>
47-
<version>2.0.9.89.v20151202</version>
47+
<version>2.0.9.90.v20151210</version>
4848
<configuration>
4949
<promote>true</promote>
5050
</configuration>

appengine/cloudsql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<plugin>
4747
<groupId>com.google.appengine</groupId>
4848
<artifactId>gcloud-maven-plugin</artifactId>
49-
<version>2.0.9.89.v20151202</version>
49+
<version>2.0.9.90.v20151210</version>
5050
<configuration>
5151
<promote>true</promote>
5252
</configuration>

appengine/cloudstorage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>com.google.appengine</groupId>
4646
<artifactId>gcloud-maven-plugin</artifactId>
47-
<version>2.0.9.89.v20151202</version>
47+
<version>2.0.9.90.v20151210</version>
4848
<configuration>
4949
<promote>true</promote>
5050
</configuration>

appengine/datastore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>com.google.appengine</groupId>
4646
<artifactId>gcloud-maven-plugin</artifactId>
47-
<version>2.0.9.89.v20151202</version>
47+
<version>2.0.9.90.v20151210</version>
4848
<configuration>
4949
<promote>true</promote>
5050
</configuration>

appengine/disk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<plugin>
4040
<groupId>com.google.appengine</groupId>
4141
<artifactId>gcloud-maven-plugin</artifactId>
42-
<version>2.0.9.89.v20151202</version>
42+
<version>2.0.9.90.v20151210</version>
4343
</plugin>
4444
</plugins>
4545
</build>

appengine/extending-runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<plugin>
4444
<groupId>com.google.appengine</groupId>
4545
<artifactId>gcloud-maven-plugin</artifactId>
46-
<version>2.0.9.89.v20151202</version>
46+
<version>2.0.9.90.v20151210</version>
4747
<configuration>
4848
<!-- TODO: change to relative paths when gcloud plugin supports them -->
4949
<custom_entrypoint>java

appengine/helloworld-mvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<plugin>
4040
<groupId>com.google.appengine</groupId>
4141
<artifactId>gcloud-maven-plugin</artifactId>
42-
<version>2.0.9.89.v20151202</version>
42+
<version>2.0.9.90.v20151210</version>
4343
</plugin>
4444
</plugins>
4545
</build>

appengine/mailgun/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<plugin>
5757
<groupId>com.google.appengine</groupId>
5858
<artifactId>gcloud-maven-plugin</artifactId>
59-
<version>2.0.9.89.v20151202</version>
59+
<version>2.0.9.90.v20151210</version>
6060
</plugin>
6161
</plugins>
6262
</build>

appengine/mailgun/src/main/java/com/example/managedvms/mailgun/MailgunServlet.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOEx
5656
}
5757
}
5858

59+
// [START simple]
5960
private ClientResponse sendSimpleMessage(String recipient) {
6061
Client client = Client.create();
6162
client.addFilter(new HTTPBasicAuthFilter("api", MAILGUN_API_KEY));
@@ -69,7 +70,9 @@ private ClientResponse sendSimpleMessage(String recipient) {
6970
return webResource.type(MediaType.APPLICATION_FORM_URLENCODED).post(ClientResponse.class,
7071
formData);
7172
}
73+
// [END simple]
7274

75+
// [START complex]
7376
private ClientResponse sendComplexMessage(String recipient) {
7477
Client client = Client.create();
7578
client.addFilter(new HTTPBasicAuthFilter("api", MAILGUN_API_KEY));
@@ -86,5 +89,6 @@ private ClientResponse sendComplexMessage(String recipient) {
8689
return webResource.type(MediaType.MULTIPART_FORM_DATA_TYPE)
8790
.post(ClientResponse.class, formData);
8891
}
92+
// [END complex]
8993
}
9094
// [END example]

appengine/memcache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>com.google.appengine</groupId>
4646
<artifactId>gcloud-maven-plugin</artifactId>
47-
<version>2.0.9.89.v20151202</version>
47+
<version>2.0.9.90.v20151210</version>
4848
</plugin>
4949
</plugins>
5050
</build>

appengine/sendgrid/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<plugin>
4747
<groupId>com.google.appengine</groupId>
4848
<artifactId>gcloud-maven-plugin</artifactId>
49-
<version>2.0.9.89.v20151202</version>
49+
<version>2.0.9.90.v20151210</version>
5050
</plugin>
5151
</plugins>
5252
</build>

appengine/static-files/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<plugin>
4040
<groupId>com.google.appengine</groupId>
4141
<artifactId>gcloud-maven-plugin</artifactId>
42-
<version>2.0.9.89.v20151202</version>
42+
<version>2.0.9.90.v20151210</version>
4343
</plugin>
4444
</plugins>
4545
</build>

appengine/twilio/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<plugin>
4848
<groupId>com.google.appengine</groupId>
4949
<artifactId>gcloud-maven-plugin</artifactId>
50-
<version>2.0.9.89.v20151202</version>
50+
<version>2.0.9.90.v20151210</version>
5151
</plugin>
5252
</plugins>
5353
</build>

appengine/websockets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<plugin>
7070
<groupId>com.google.appengine</groupId>
7171
<artifactId>gcloud-maven-plugin</artifactId>
72-
<version>2.0.9.89.v20151202</version>
72+
<version>2.0.9.90.v20151210</version>
7373
</plugin>
7474
</plugins>
7575
</build>

0 commit comments

Comments
 (0)