├── .gitignore ├── .kokoro ├── common.cfg ├── continuous.cfg ├── periodic.cfg ├── presubmit.cfg ├── tests │ └── run_tests.sh └── trampoline.sh ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appengine-flexible-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── README.md │ │ ├── nbactions.xml │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── HelloAppEngine.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── HelloAppEngineTest.java │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── appengine-skeleton-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── README.md │ │ ├── nbactions.xml │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── HelloAppEngine.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── logging.properties │ │ │ └── web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── HelloAppEngineTest.java │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── appengine-standard-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── README.md │ │ ├── nbactions.xml │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── HelloAppEngine.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── logging.properties │ │ │ └── web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── HelloAppEngineTest.java │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── endpoints-skeleton-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.gradle │ │ ├── nbactions.xml │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── YourFirstAPI.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── favicon.ico ├── guestbook-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ ├── archetype-metadata.xml │ │ │ └── goal.txt │ │ └── archetype-resources │ │ ├── README.md │ │ └── pom.xml │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── hello-endpoints-archetype ├── Jenkins.sh ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.gradle │ │ ├── nbactions.xml │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ ├── Constants.java │ │ ├── Greetings.java │ │ └── HelloGreeting.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml │ │ ├── bootstrap │ │ └── css │ │ │ ├── bootstrap-responsive.css │ │ │ └── bootstrap.css │ │ ├── css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ └── base.js │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── pom.xml ├── secrets.env.enc ├── service-account.json.enc └── skeleton-archetype ├── pom.xml └── src ├── main └── resources │ ├── META-INF │ └── maven │ │ └── archetype-metadata.xml │ └── archetype-resources │ ├── README.md │ └── pom.xml └── test └── resources └── projects └── basic ├── archetype.properties └── goal.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/tests/run_tests.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/README.md -------------------------------------------------------------------------------- /appengine-flexible-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/pom.xml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/nbactions.xml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/appengine/app.yaml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-flexible-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /appengine-flexible-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | verify 2 | -------------------------------------------------------------------------------- /appengine-skeleton-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/pom.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/nbactions.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-skeleton-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /appengine-skeleton-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | verify 2 | -------------------------------------------------------------------------------- /appengine-standard-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/pom.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/nbactions.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/main/java/HelloAppEngine.java -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /appengine-standard-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/main/resources/archetype-resources/src/test/java/HelloAppEngineTest.java -------------------------------------------------------------------------------- /appengine-standard-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/appengine-standard-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /appengine-standard-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | verify 2 | -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/pom.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/LICENSE -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/build.gradle -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/nbactions.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/java/YourFirstAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/java/YourFirstAPI.java -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/endpoints-skeleton-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /endpoints-skeleton-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/favicon.ico -------------------------------------------------------------------------------- /guestbook-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/guestbook-archetype/pom.xml -------------------------------------------------------------------------------- /guestbook-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/guestbook-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /guestbook-archetype/src/main/resources/META-INF/maven/goal.txt: -------------------------------------------------------------------------------- 1 | verify 2 | -------------------------------------------------------------------------------- /guestbook-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/guestbook-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /guestbook-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/guestbook-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /guestbook-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/guestbook-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /guestbook-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | verify 2 | -------------------------------------------------------------------------------- /hello-endpoints-archetype/Jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/Jenkins.sh -------------------------------------------------------------------------------- /hello-endpoints-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/pom.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/LICENSE -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/build.gradle -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/nbactions.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/Constants.java -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/Greetings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/Greetings.java -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/HelloGreeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/java/HelloGreeting.java -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/logging.properties -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/css/style.css -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/main/resources/archetype-resources/src/main/webapp/js/base.js -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/hello-endpoints-archetype/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /hello-endpoints-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/pom.xml -------------------------------------------------------------------------------- /secrets.env.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/secrets.env.enc -------------------------------------------------------------------------------- /service-account.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/service-account.json.enc -------------------------------------------------------------------------------- /skeleton-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/skeleton-archetype/pom.xml -------------------------------------------------------------------------------- /skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/skeleton-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /skeleton-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/skeleton-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /skeleton-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-maven-archetypes-java/HEAD/skeleton-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /skeleton-archetype/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 22 09:50:12 PDT 2017 2 | package=it.pkg 3 | version=0.1-SNAPSHOT 4 | groupId=archetype.it 5 | artifactId=basic 6 | -------------------------------------------------------------------------------- /skeleton-archetype/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------