|
15 | 15 | limitations under the License.
|
16 | 16 | -->
|
17 | 17 | <project>
|
18 |
| - <modelVersion>4.0.0</modelVersion> |
19 |
| - <packaging>war</packaging> |
20 |
| - <version>1.0-SNAPSHOT</version> |
21 |
| - <groupId>com.example.appengine</groupId> |
22 |
| - <artifactId>appengine-logs-j8</artifactId> |
23 |
| - <!-- Parent POM defines ${appengine.sdk.version} (updates frequently). --> |
24 |
| - <parent> |
25 |
| - <groupId>com.google.cloud</groupId> |
26 |
| - <artifactId>appengine-java8-samples</artifactId> |
27 |
| - <version>1.0.0</version> |
28 |
| - <relativePath>..</relativePath> |
29 |
| - </parent> |
30 |
| - <dependencies> |
31 |
| - <dependency> |
32 |
| - <groupId>com.google.appengine</groupId> |
33 |
| - <artifactId>appengine-api-1.0-sdk</artifactId> |
34 |
| - <version>${appengine.sdk.version}</version> |
35 |
| - </dependency> |
36 |
| - <dependency> |
37 |
| - <groupId>com.google.guava</groupId> |
38 |
| - <artifactId>guava</artifactId> |
39 |
| - <version>20.0</version> |
40 |
| - </dependency> |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + <packaging>war</packaging> |
| 20 | + <version>1.0-SNAPSHOT</version> |
| 21 | + <groupId>com.example.appengine</groupId> |
| 22 | + <artifactId>appengine-logs-j8</artifactId> |
| 23 | + <!-- Parent POM defines ${appengine.sdk.version} (updates frequently). --> |
| 24 | + <parent> |
| 25 | + <groupId>com.google.cloud</groupId> |
| 26 | + <artifactId>appengine-java8-samples</artifactId> |
| 27 | + <version>1.0.0</version> |
| 28 | + <relativePath>..</relativePath> |
| 29 | + </parent> |
| 30 | + <dependencies> |
| 31 | + <dependency> |
| 32 | + <groupId>com.google.appengine</groupId> |
| 33 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 34 | + <version>${appengine.sdk.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>com.google.guava</groupId> |
| 38 | + <artifactId>guava</artifactId> |
| 39 | + <version>20.0</version> |
| 40 | + </dependency> |
41 | 41 |
|
42 |
| - <dependency> |
43 |
| - <groupId>javax.servlet</groupId> |
44 |
| - <artifactId>javax.servlet-api</artifactId> |
45 |
| - <version>3.1.0</version> |
46 |
| - <type>jar</type> |
47 |
| - <scope>provided</scope> |
48 |
| - </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>javax.servlet</groupId> |
| 44 | + <artifactId>javax.servlet-api</artifactId> |
| 45 | + <version>3.1.0</version> |
| 46 | + <type>jar</type> |
| 47 | + <scope>provided</scope> |
| 48 | + </dependency> |
49 | 49 |
|
50 |
| - <dependency> |
51 |
| - <groupId>org.json</groupId> |
52 |
| - <artifactId>json</artifactId> |
53 |
| - <version>20160810</version> |
54 |
| - </dependency> |
55 |
| - <dependency> |
56 |
| - <groupId>joda-time</groupId> |
57 |
| - <artifactId>joda-time</artifactId> |
58 |
| - <version>2.9.9</version> |
59 |
| - </dependency> |
60 |
| - </dependencies> |
61 |
| - <build> |
62 |
| - <!-- for hot reload of the web application --> |
63 |
| - <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> |
64 |
| - <plugins> |
65 |
| - <plugin> |
66 |
| - <groupId>com.google.cloud.tools</groupId> |
67 |
| - <artifactId>appengine-maven-plugin</artifactId> |
68 |
| - <version>1.3.1</version> |
69 |
| - <configuration> |
70 |
| - <deploy.promote>true</deploy.promote> |
71 |
| - <deploy.stopPreviousVersion>true</deploy.stopPreviousVersion> |
72 |
| - </configuration> |
73 |
| - </plugin> |
74 |
| - </plugins> |
75 |
| - </build> |
| 50 | + <dependency> |
| 51 | + <groupId>org.json</groupId> |
| 52 | + <artifactId>json</artifactId> |
| 53 | + <version>20160810</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>joda-time</groupId> |
| 57 | + <artifactId>joda-time</artifactId> |
| 58 | + <version>2.9.9</version> |
| 59 | + </dependency> |
| 60 | + </dependencies> |
| 61 | + <build> |
| 62 | + <!-- for hot reload of the web application --> |
| 63 | + <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes |
| 64 | + </outputDirectory> |
| 65 | + <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>com.google.cloud.tools</groupId> |
| 68 | + <artifactId>appengine-maven-plugin</artifactId> |
| 69 | + <version>1.3.1</version> |
| 70 | + <configuration> |
| 71 | + <deploy.promote>true</deploy.promote> |
| 72 | + <deploy.stopPreviousVersion>true</deploy.stopPreviousVersion> |
| 73 | + </configuration> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-war-plugin</artifactId> |
| 78 | + <version>3.1.0</version> |
| 79 | + </plugin> |
| 80 | + </plugins> |
| 81 | + </build> |
76 | 82 | </project>
|
0 commit comments