Skip to content
1 change: 1 addition & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
</properties>
<packaging>jar</packaging>
<name>AppEngine :: appengine-apis</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>API for Google App Engine standard environment</description>
<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions api_dev/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-apis-dev</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>SDK for dev_appserver (local development)</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand Down
1 change: 1 addition & 0 deletions api_legacy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-api-legacy</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>
Legacy appengine API's that have been removed from appengine-api-sdk-1.0
</description>
Expand Down
34 changes: 34 additions & 0 deletions appengine-api-1.0-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
</parent>
<packaging>jar</packaging>
<name>AppEngine :: appengine-api-1.0-sdk</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>API for Google App Engine standard environment with some of the dependencies shaded (repackaged)</description>
<dependencies>
<dependency> <!-- needed for remote_api for opencensus. -->
Expand Down Expand Up @@ -527,6 +528,39 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<notimestamp>true</notimestamp>
<show>public</show>
<failOnWarnings>false</failOnWarnings>
<doclint>none</doclint>
<sourcepath>${project.basedir}/../api/src/main/java</sourcepath>
<includeDependencySources>true</includeDependencySources>
<additionalDependencies>
<additionalDependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc2</version>
</additionalDependency>
<additionalDependency>
<groupId>com.google.auto</groupId>
<artifactId>auto-common</artifactId>
<version>1.2.1</version>
</additionalDependency>
</additionalDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>
27 changes: 27 additions & 0 deletions appengine-api-stubs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-api-stubs</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>
SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)
</description>
Expand Down Expand Up @@ -377,6 +378,32 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<notimestamp>true</notimestamp>
<show>public</show>
<failOnWarnings>false</failOnWarnings>
<doclint>none</doclint>
<sourcepath>${project.basedir}/../api_dev/src/main/java</sourcepath>
<additionalDependencies>
<additionalDependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc2</version>
</additionalDependency>
</additionalDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 2 additions & 0 deletions appengine_init/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-init</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>App Engine initialization.</description>

<dependencies>

Expand Down
2 changes: 2 additions & 0 deletions appengine_jsr107/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
<artifactId>appengine-jsr107</artifactId>
<packaging>jar</packaging>
<name>AppEngine :: appengine-jsr107</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>App Engine JSR-107 (JCache) integration.</description>

<parent>
<groupId>com.google.appengine</groupId>
Expand Down
2 changes: 2 additions & 0 deletions appengine_resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
</parent>
<packaging>jar</packaging>
<name>AppEngine :: appengine-resources</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>App Engine resources.</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
Expand Down
1 change: 1 addition & 0 deletions appengine_setup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
</modules>
<packaging>pom</packaging>
<name>AppEngine :: appengine_setup</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>DO NOT USE - Presently in Beta Mode. Library to help setup AppEngine features (bundled services, session management, etc).</description>

<properties>
Expand Down
1 change: 1 addition & 0 deletions appengine_setup/testapps/springboot_testapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<artifactId>springboot_testapp</artifactId>
<version>2.0.39-SNAPSHOT</version>
<name>springboot_testapp</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>8</java.version>
Expand Down
1 change: 1 addition & 0 deletions appengine_testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-testing</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Testing support for Google App Engine standard environment application code</description>


Expand Down
1 change: 1 addition & 0 deletions appengine_testing_tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<packaging>jar</packaging>
<name>AppEngine :: appengine-testing-tests</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Tests for Testing support for Google App Engine standard environment application code</description>


Expand Down
2 changes: 2 additions & 0 deletions applications/guestbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<groupId>com.google.appengine.demos</groupId>
<artifactId>guestbook</artifactId>
<name>AppEngine :: guestbook</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A guestbook sample application.</description>

<prerequisites>
<maven>3.6.0</maven>
Expand Down
2 changes: 2 additions & 0 deletions applications/guestbook_jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<groupId>com.google.appengine.demos</groupId>
<artifactId>guestbook_jakarta</artifactId>
<name>AppEngine :: guestbook_jakarta</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A guestbook sample application (Jakarta).</description>

<prerequisites>
<maven>3.6.0</maven>
Expand Down
2 changes: 2 additions & 0 deletions applications/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>applications</artifactId>
<name>AppEngine :: application projects</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Parent POM for sample applications.</description>
<parent>
<groupId>com.google.appengine</groupId>
<artifactId>parent</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions applications/proberapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
<groupId>com.google.appengine.demos</groupId>
<artifactId>proberapp</artifactId>
<name>AppEngine :: proberapp</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A prober application.</description>
<parent>
<groupId>com.google.appengine</groupId>
<artifactId>applications</artifactId>
Expand Down
1 change: 1 addition & 0 deletions applications/springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<packaging>war</packaging>

<name>AppEngine :: springboot</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Demo project for Spring Boot</description>

<properties>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/devappservertests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

<packaging>jar</packaging>
<name>AppEngine :: e2e devappserver tests</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Tests for the development app server.</description>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<version>2.0.39-SNAPSHOT</version>
</parent>
<name>AppEngine :: e2e tests</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>End-to-end tests.</description>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/stagingtests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

<packaging>jar</packaging>
<name>AppEngine :: e2e staging tests</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Tests for staging.</description>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/allinone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: allinone test application</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>An all-in-one sample application.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/allinone_jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: allinone test application Jarkata</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>An all-in-one sample application (Jakarta).</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/badcron/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: badcron</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a bad cron job.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/bundle_standard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: bundle_standard</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application that bundles the standard App Engine API.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
<packaging>war</packaging>

<name>AppEngine :: bundle_standard_with_container_initializer</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application that bundles the standard App Engine API with a container initializer.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/bundle_standard_with_no_jsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: bundle_standard_with_no_jsp</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application that bundles the standard App Engine API but contains no JSPs.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: bundle_standard_with_weblistener_memcache</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application that bundles the standard App Engine API with a web listener for memcache.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/cron-bad-job-age-limit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: cron-bad-job-age-limit</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a cron job with a bad age limit.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/cron-good-retry-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: cron-good-retry-parameters</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a cron job with good retry parameters.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/cron-negative-max-backoff/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: cron-negative-max-backoff</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a cron job with a negative max backoff.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/cron-negative-retry-limit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: cron-negative-retry-limit</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a cron job with a negative retry limit.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/cron-two-max-doublings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: cron-two-max-doublings</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a cron job with two max doublings.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/http-headers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: http-headers</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application for testing HTTP headers.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/java8-jar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: java8-jar</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample Java 8 application in a JAR.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/java8-no-webxml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: java8-no-webxml</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample Java 8 application with no web.xml.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>testlocalapps</artifactId>
<name>AppEngine :: Test local applications</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>Test applications for local development.</description>
<parent>
<groupId>com.google.appengine</groupId>
<artifactId>e2etests</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions e2etests/testlocalapps/sample-badaeweb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<packaging>war</packaging>

<name>AppEngine :: sample-badaeweb</name>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<description>A sample application with a bad appengine-web.xml.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Loading
Loading