Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #57 from GoogleCloudPlatform/fix-endpoints
Browse files Browse the repository at this point in the history
Temporary fix for Endpoints Archetypes
  • Loading branch information
frankyn authored Feb 8, 2017
2 parents ad77576 + 76f1e03 commit 41c3b79
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ provided [here][9].
`gradle appengineDeploy`
## Known issues
There's a [bug][13] where `<version>1</version>` is required in the
[appengine-web.xml](src/main/webapp/WEB-INF/appengine-web.xml) to run
this sample locally. This will become optional in the near future.
[1]: https://cloud.google.com/appengine/docs/java/
[2]: http://java.com/en/
Expand All @@ -103,3 +109,4 @@ provided [here][9].
[10]: https://github.com/GoogleCloudPlatform/endpoints-framework-maven-plugin
[11]: https://github.com/GoogleCloudPlatform/endpoints-framework-gradle-plugin
[12]: https://cloud.google.com/endpoints/docs/authenticating-users-frameworks
[13]: https://github.com/cloudendpoints/endpoints-java/issues/43
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ buildscript { // Configuration for building
}

repositories { // repositories for Jar's you access in your code
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Repository (if needed)
}
mavenCentral()
jcenter()
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<threadsafe>true</threadsafe>
<version>1</version>

<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ provided [here][9].
`gradle appengineDeploy`
## Known issues
There's a [bug][13] where `<version>1</version>` is required in the
[appengine-web.xml](src/main/webapp/WEB-INF/appengine-web.xml) to run
this sample locally. This will become optional in the near future.
[1]: https://cloud.google.com/appengine/docs/java/
[2]: http://java.com/en/
[3]: https://cloud.google.com/appengine/docs/java/endpoints/
Expand All @@ -111,3 +118,4 @@ provided [here][9].
[10]: https://github.com/GoogleCloudPlatform/endpoints-framework-maven-plugin
[11]: https://github.com/GoogleCloudPlatform/endpoints-framework-gradle-plugin
[12]: https://cloud.google.com/endpoints/docs/authenticating-users-frameworks
[13]: https://github.com/cloudendpoints/endpoints-java/issues/43
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ buildscript { // Configuration for building
}

repositories { // repositories for Jar's you access in your code
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT Repository (if needed)
}
mavenCentral()
jcenter()
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<threadsafe>true</threadsafe>
<threadsafe>true</threadsafe>
<version>1</version>

<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
Expand Down

0 comments on commit 41c3b79

Please sign in to comment.