|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 | <packaging>war</packaging>
|
7 | 7 | <version>1.0-SNAPSHOT</version>
|
8 |
| - <groupId>com.example.flexible.endpoints</groupId> |
9 |
| - <artifactId>flexible-endpoints</artifactId> |
| 8 | + <groupId>com.example.endpoints</groupId> |
| 9 | + <artifactId>endpoints</artifactId> |
10 | 10 |
|
11 | 11 | <parent>
|
12 | 12 | <artifactId>doc-samples</artifactId>
|
|
19 | 19 | <maven.compiler.target>1.8</maven.compiler.target>
|
20 | 20 | <maven.compiler.source>1.8</maven.compiler.source>
|
21 | 21 |
|
| 22 | + <maven.war.plugin>2.6</maven.war.plugin> |
| 23 | + |
22 | 24 | <appengine.maven.plugin>1.0.0</appengine.maven.plugin>
|
23 | 25 | <jetty.maven.plugin>9.3.8.v20160314</jetty.maven.plugin>
|
24 | 26 |
|
|
46 | 48 | <!-- for hot reload of the web application -->
|
47 | 49 | <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
|
48 | 50 | <plugins>
|
| 51 | + <plugin> <!-- TEMPORARY --> |
| 52 | + <groupId>com.google.appengine</groupId> |
| 53 | + <artifactId>gcloud-maven-plugin</artifactId> |
| 54 | + <version>2.0.9.121.v20160815</version> |
| 55 | + <configuration> |
| 56 | + <gcloud_app_prefix>beta</gcloud_app_prefix> |
| 57 | + </configuration> |
| 58 | + </plugin> |
49 | 59 | <plugin>
|
50 | 60 | <groupId>com.google.cloud.tools</groupId>
|
51 | 61 | <artifactId>appengine-maven-plugin</artifactId>
|
|
56 | 66 | <plugin>
|
57 | 67 | <groupId>org.apache.maven.plugins</groupId>
|
58 | 68 | <artifactId>maven-war-plugin</artifactId>
|
59 |
| - <version>2.6</version> |
| 69 | + <version>${maven.war.plugin}</version> |
60 | 70 | <configuration>
|
61 | 71 | <failOnMissingWebXml>false</failOnMissingWebXml>
|
62 | 72 | </configuration>
|
|
0 commit comments