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

Commit

Permalink
Adding fix to run endpoints archetypes locally.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyn committed Feb 8, 2017
1 parent ad77576 commit 0c5ccd8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
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
@@ -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
@@ -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 0c5ccd8

Please sign in to comment.