Skip to content

Commit 33210e3

Browse files
authored
Add Metadata (#764)
* Add Metadata 1. Use Metadata server 2. Fix a bunch of check style issues 3. Switch to using StringBuilder * rename file again Well, Intellij didn’t pickup that this was tracked by git :(
1 parent dd23622 commit 33210e3

File tree

4 files changed

+243
-139
lines changed

4 files changed

+243
-139
lines changed

appengine-java8/gaeinfo/pom.xml

+17-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ Copyright 2017 Google Inc.
3333
<maven.compiler.target>1.8</maven.compiler.target>
3434
<maven.compiler.source>1.8</maven.compiler.source>
3535
</properties>
36-
<!-- [END compiler] -->
36+
<!-- [END compiler] -->
3737

3838
<dependencies>
39-
<dependency>
39+
<dependency>
4040
<groupId>com.google.appengine</groupId>
4141
<artifactId>appengine-api-1.0-sdk</artifactId>
4242
<version>${appengine.sdk.version}</version>
@@ -50,11 +50,24 @@ Copyright 2017 Google Inc.
5050
<scope>provided</scope>
5151
</dependency>
5252

53+
<dependency>
54+
<groupId>com.squareup.okhttp3</groupId>
55+
<artifactId>okhttp</artifactId>
56+
<version>3.8.1</version>
57+
</dependency>
58+
59+
<dependency>
60+
<groupId>com.google.code.gson</groupId>
61+
<artifactId>gson</artifactId>
62+
<version>2.8.1</version>
63+
</dependency>
64+
5365
</dependencies>
5466

5567
<build>
5668
<!-- for hot reload of the web application -->
57-
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
69+
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes
70+
</outputDirectory>
5871
<plugins>
5972
<plugin>
6073
<groupId>org.apache.maven.plugins</groupId>
@@ -85,4 +98,4 @@ Copyright 2017 Google Inc.
8598
</plugins>
8699
</build>
87100
</project>
88-
<!-- [END pom] -->
101+
<!-- [END pom] -->

appengine-java8/gaeinfo/src/main/java/com/example/appengine/standard/GAEInfoServlet.java

-135
This file was deleted.

0 commit comments

Comments
 (0)