-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from udacity/gce_update
Migrate to GCE V2
- Loading branch information
Showing
9 changed files
with
86 additions
and
60 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
FinalProject/backend/src/main/java/com/udacity/gradle/builditbigger/backend/MyEndpoint.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5"> | ||
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"> | ||
<servlet> | ||
<servlet-name>SystemServiceServlet</servlet-name> | ||
<servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class> | ||
<!-- V2: Start of v2 section --> | ||
<servlet-name>EndpointsServlet</servlet-name> | ||
<servlet-class>com.google.api.server.spi.EndpointsServlet</servlet-class> | ||
<!-- V2: End of v2 section --> | ||
<init-param> | ||
<param-name>services</param-name> | ||
<param-value>com.udacity.gradle.builditbigger.backend.MyEndpoint</param-value> | ||
</init-param> | ||
</servlet> | ||
<servlet-mapping> | ||
<servlet-name>SystemServiceServlet</servlet-name> | ||
<url-pattern>/_ah/spi/*</url-pattern> | ||
<!-- V2: Start of v2 section --> | ||
<servlet-name>EndpointsServlet</servlet-name> | ||
<url-pattern>/_ah/api/*</url-pattern> | ||
<!-- V2: End of v2 section --> | ||
</servlet-mapping> | ||
|
||
<welcome-file-list> | ||
<welcome-file>index.html</welcome-file> | ||
</welcome-file-list> | ||
</web-app> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Aug 17 11:13:49 PDT 2016 | ||
#Wed Jan 03 15:56:05 GMT 2018 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip |