Skip to content

Commit 3778448

Browse files
committed
Remove extraneous (old Maven plugin) parameters.
1 parent 02a8173 commit 3778448

File tree

1 file changed

+91
-102
lines changed
  • appengine/guestbook-cloud-datastore

1 file changed

+91
-102
lines changed
+91-102
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,101 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35

4-
<modelVersion>4.0.0</modelVersion>
5-
<packaging>war</packaging>
6-
<version>1.0-SNAPSHOT</version>
6+
<modelVersion>4.0.0</modelVersion>
7+
<packaging>war</packaging>
8+
<version>1.0-SNAPSHOT</version>
79

8-
<groupId>com.example.appengine</groupId>
9-
<artifactId>appengine-guestbook-cloud-datastore</artifactId>
10-
<properties>
11-
<guava.version>19.0</guava.version>
12-
</properties>
13-
<parent>
14-
<groupId>com.google.cloud</groupId>
15-
<artifactId>doc-samples</artifactId>
16-
<version>1.0.0</version>
17-
<relativePath>../..</relativePath>
18-
</parent>
10+
<groupId>com.example.appengine</groupId>
11+
<artifactId>appengine-guestbook-cloud-datastore</artifactId>
12+
<properties>
13+
<guava.version>19.0</guava.version>
14+
</properties>
15+
<parent>
16+
<groupId>com.google.cloud</groupId>
17+
<artifactId>doc-samples</artifactId>
18+
<version>1.0.0</version>
19+
<relativePath>../..</relativePath>
20+
</parent>
1921

20-
<!-- [START set_versions] -->
21-
<prerequisites>
22-
<maven>3.3.9</maven>
23-
</prerequisites>
24-
<!-- [END set_versions] -->
22+
<!-- [START set_versions] -->
23+
<prerequisites>
24+
<maven>3.3.9</maven>
25+
</prerequisites>
26+
<!-- [END set_versions] -->
2527

26-
<dependencies>
27-
<!-- Compile/runtime dependencies -->
28-
<dependency>
29-
<groupId>com.google.appengine</groupId>
30-
<artifactId>appengine-api-1.0-sdk</artifactId>
31-
<version>${appengine.sdk.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>javax.servlet</groupId>
35-
<artifactId>servlet-api</artifactId>
36-
<version>2.5</version>
37-
<scope>provided</scope>
38-
</dependency>
39-
<dependency>
40-
<groupId>jstl</groupId>
41-
<artifactId>jstl</artifactId>
42-
<version>1.2</version>
43-
</dependency>
28+
<dependencies>
29+
<!-- Compile/runtime dependencies -->
30+
<dependency>
31+
<groupId>com.google.appengine</groupId>
32+
<artifactId>appengine-api-1.0-sdk</artifactId>
33+
<version>${appengine.sdk.version}</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>javax.servlet</groupId>
37+
<artifactId>servlet-api</artifactId>
38+
<version>2.5</version>
39+
<scope>provided</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>jstl</groupId>
43+
<artifactId>jstl</artifactId>
44+
<version>1.2</version>
45+
</dependency>
4446

45-
<dependency>
46-
<groupId>com.google.cloud</groupId>
47-
<artifactId>google-cloud</artifactId>
48-
<version>0.4.0</version>
49-
</dependency>
47+
<dependency>
48+
<groupId>com.google.cloud</groupId>
49+
<artifactId>google-cloud</artifactId>
50+
<version>0.4.0</version>
51+
</dependency>
5052

51-
<dependency>
52-
<groupId>com.google.guava</groupId>
53-
<artifactId>guava</artifactId>
54-
<version>${guava.version}</version>
55-
</dependency>
53+
<dependency>
54+
<groupId>com.google.guava</groupId>
55+
<artifactId>guava</artifactId>
56+
<version>${guava.version}</version>
57+
</dependency>
5658

57-
<!-- Test Dependencies -->
58-
<dependency>
59-
<groupId>junit</groupId>
60-
<artifactId>junit</artifactId>
61-
<version>4.12</version>
62-
<scope>test</scope>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.mockito</groupId>
66-
<artifactId>mockito-all</artifactId>
67-
<version>1.10.19</version>
68-
<scope>test</scope>
69-
</dependency>
70-
<dependency>
71-
<groupId>com.google.appengine</groupId>
72-
<artifactId>appengine-testing</artifactId>
73-
<version>${appengine.sdk.version}</version>
74-
<scope>test</scope>
75-
</dependency>
76-
<dependency>
77-
<groupId>com.google.appengine</groupId>
78-
<artifactId>appengine-api-stubs</artifactId>
79-
<version>${appengine.sdk.version}</version>
80-
<scope>test</scope>
81-
</dependency>
82-
<dependency>
83-
<groupId>com.google.appengine</groupId>
84-
<artifactId>appengine-tools-sdk</artifactId>
85-
<version>${appengine.sdk.version}</version>
86-
<scope>test</scope>
87-
</dependency>
88-
</dependencies>
59+
<!-- Test Dependencies -->
60+
<dependency>
61+
<groupId>junit</groupId>
62+
<artifactId>junit</artifactId>
63+
<version>4.12</version>
64+
<scope>test</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.mockito</groupId>
68+
<artifactId>mockito-all</artifactId>
69+
<version>1.10.19</version>
70+
<scope>test</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>com.google.appengine</groupId>
74+
<artifactId>appengine-testing</artifactId>
75+
<version>${appengine.sdk.version}</version>
76+
<scope>test</scope>
77+
</dependency>
78+
<dependency>
79+
<groupId>com.google.appengine</groupId>
80+
<artifactId>appengine-api-stubs</artifactId>
81+
<version>${appengine.sdk.version}</version>
82+
<scope>test</scope>
83+
</dependency>
84+
<dependency>
85+
<groupId>com.google.appengine</groupId>
86+
<artifactId>appengine-tools-sdk</artifactId>
87+
<version>${appengine.sdk.version}</version>
88+
<scope>test</scope>
89+
</dependency>
90+
</dependencies>
8991

90-
<build>
91-
<!-- for hot reload of the web application-->
92-
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
93-
<plugins>
94-
<plugin>
95-
<groupId>com.google.appengine</groupId>
96-
<artifactId>appengine-maven-plugin</artifactId>
97-
<version>${appengine.sdk.version}</version>
98-
<configuration>
99-
<enableJarClasses>false</enableJarClasses>
100-
<!-- Comment in the below snippet to bind to all IPs instead of just localhost -->
101-
<!-- address>0.0.0.0</address>
102-
<port>8080</port -->
103-
<!-- Comment in the below snippet to enable local debugging with a remote debugger
104-
like those included with Eclipse or IntelliJ -->
105-
<!-- jvmFlags>
106-
<jvmFlag>-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n</jvmFlag>
107-
</jvmFlags -->
108-
</configuration>
109-
</plugin>
110-
</plugins>
111-
</build>
92+
<build>
93+
<plugins>
94+
<plugin>
95+
<groupId>com.google.cloud.tools</groupId>
96+
<artifactId>appengine-maven-plugin</artifactId>
97+
<version>1.0.0</version>
98+
</plugin>
99+
</plugins>
100+
</build>
112101
</project>

0 commit comments

Comments
 (0)