|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 4 | + |
4 | 5 | <modelVersion>4.0.0</modelVersion>
|
5 | 6 | <packaging>war</packaging>
|
6 | 7 | <version>1.0-SNAPSHOT</version>
|
7 | 8 | <groupId>com.example.managedvms</groupId>
|
8 |
| - <artifactId>appengine-helloworld-mvm</artifactId> |
| 9 | + <artifactId>managedvms-helloworld-mvm</artifactId> |
| 10 | + |
9 | 11 | <dependencies>
|
10 | 12 | <dependency>
|
11 | 13 | <groupId>javax.servlet</groupId>
|
|
15 | 17 | <scope>provided</scope>
|
16 | 18 | </dependency>
|
17 | 19 | </dependencies>
|
| 20 | + |
18 | 21 | <build>
|
19 | 22 | <!-- for hot reload of the web application -->
|
20 | 23 | <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
|
21 | 24 | <plugins>
|
| 25 | + |
| 26 | + <plugin> |
| 27 | + <groupId>org.eclipse.jetty</groupId> |
| 28 | + <artifactId>jetty-maven-plugin</artifactId> |
| 29 | + <version>9.3.7.v20160115</version> |
| 30 | + </plugin> |
| 31 | + |
22 | 32 | <plugin>
|
23 | 33 | <groupId>org.apache.maven.plugins</groupId>
|
24 | 34 | <artifactId>maven-war-plugin</artifactId>
|
|
27 | 37 | <failOnMissingWebXml>false</failOnMissingWebXml>
|
28 | 38 | </configuration>
|
29 | 39 | </plugin>
|
| 40 | + |
30 | 41 | <plugin>
|
31 | 42 | <groupId>org.apache.maven.plugins</groupId>
|
32 | 43 | <version>3.3</version>
|
33 | 44 | <artifactId>maven-compiler-plugin</artifactId>
|
34 | 45 | <configuration>
|
35 |
| - <source>1.7</source> |
36 |
| - <target>1.7</target> |
| 46 | + <source>1.8</source> |
| 47 | + <target>1.8</target> |
37 | 48 | </configuration>
|
38 | 49 | </plugin>
|
| 50 | + |
39 | 51 | <plugin>
|
40 | 52 | <groupId>com.google.appengine</groupId>
|
41 | 53 | <artifactId>gcloud-maven-plugin</artifactId>
|
42 |
| - <version>2.0.9.90.v20151210</version> |
| 54 | + <version>2.0.9.92.v20160118</version> |
43 | 55 | </plugin>
|
| 56 | + |
44 | 57 | <plugin>
|
45 | 58 | <groupId>org.apache.maven.plugins</groupId>
|
46 | 59 | <artifactId>maven-checkstyle-plugin</artifactId>
|
|
55 | 68 | <execution><goals><goal>check</goal></goals></execution>
|
56 | 69 | </executions>
|
57 | 70 | </plugin>
|
| 71 | + |
58 | 72 | </plugins>
|
59 | 73 | </build>
|
60 | 74 | </project>
|
0 commit comments