|
5 | 5 | <artifactId>u2f-gae-demo</artifactId> |
6 | 6 | <properties> |
7 | 7 | <appengine.app.version>1</appengine.app.version> |
8 | | - <appengine.sdk.version>1.9.54</appengine.sdk.version> |
| 8 | + <appengine.sdk.version>1.9.64</appengine.sdk.version> |
9 | 9 | <objectify.version>5.1.5</objectify.version> |
10 | | - <guava.version>18.0</guava.version> |
| 10 | + <guava.version>26.0-jre</guava.version> |
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 12 | </properties> |
13 | | - <version>0.0.1-SNAPSHOT</version> |
| 13 | + <version>0.0.2-SNAPSHOT</version> |
14 | 14 | <packaging>war</packaging> |
15 | 15 | <name>u2f-gae-demo</name> |
16 | 16 | <description>u2f-gae-demo</description> |
|
29 | 29 | <artifactId>maven-compiler-plugin</artifactId> |
30 | 30 | <version>3.5.1</version> |
31 | 31 | <configuration> |
32 | | - <source>1.7</source> |
33 | | - <target>1.7</target> |
| 32 | + <source>1.8</source> |
| 33 | + <target>1.8</target> |
34 | 34 | </configuration> |
35 | 35 | </plugin> |
36 | 36 | <plugin> |
|
89 | 89 | <configuration> |
90 | 90 | <enableJarClasses>false</enableJarClasses> |
91 | 91 | <port>8888</port> |
92 | | - <!-- Comment in the below snippet to bind to all IPs instead of just localhost --> |
| 92 | + <!-- Comment in the below snippet to bind to all IPs instead of |
| 93 | + just localhost --> |
93 | 94 | <!-- <address>0.0.0.0</address> --> |
94 | 95 | <!-- <port>8080</port> --> |
95 | | - <!-- Comment in the below snippet to enable local debugging with a remote |
96 | | - debugger like those included with Eclipse or IntelliJ --> |
| 96 | + <!-- Comment in the below snippet to enable local debugging with |
| 97 | + a remote debugger like those included with Eclipse or IntelliJ --> |
97 | 98 | <!-- jvmFlags> <jvmFlag>-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n</jvmFlag> |
98 | 99 | </jvmFlags --> |
99 | 100 | </configuration> |
100 | 101 | </plugin> |
| 102 | + <plugin> |
| 103 | + <groupId>com.google.cloud.tools</groupId> |
| 104 | + <artifactId>endpoints-framework-maven-plugin</artifactId> |
| 105 | + <version>1.0.2</version> |
| 106 | + <configuration> |
| 107 | + <!-- plugin configuration --> |
| 108 | + <hostname>u2fdemo.appspot.com</hostname> |
| 109 | + </configuration> |
| 110 | + </plugin> |
101 | 111 | </plugins> |
102 | 112 | </build> |
103 | 113 | <dependencies> |
|
112 | 122 | <version>${appengine.sdk.version}</version> |
113 | 123 | </dependency> |
114 | 124 | <dependency> |
115 | | - <groupId>com.google.appengine</groupId> |
116 | | - <artifactId>appengine-endpoints</artifactId> |
117 | | - <version>${appengine.sdk.version}</version> |
| 125 | + <groupId>com.google.endpoints</groupId> |
| 126 | + <artifactId>endpoints-framework-all</artifactId> |
| 127 | + <version>2.0.7</version> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>com.google.endpoints</groupId> |
| 131 | + <artifactId>endpoints-management-control-appengine</artifactId> |
| 132 | + <version>1.0.4</version> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>com.google.endpoints</groupId> |
| 136 | + <artifactId>endpoints-framework-auth</artifactId> |
| 137 | + <version>1.0.4</version> |
118 | 138 | </dependency> |
119 | 139 | <dependency> |
120 | 140 | <groupId>com.google.template</groupId> |
|
0 commit comments