Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit ebe2932

Browse files
committed
A suggested bug fix for code lab issue #413
#413
1 parent be77fa1 commit ebe2932

File tree

1 file changed

+76
-71
lines changed
  • developer-tools/java-debugging/app

1 file changed

+76
-71
lines changed
Lines changed: 76 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,77 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.docker</groupId>
5-
<artifactId>UserSignup</artifactId>
6-
<packaging>war</packaging>
7-
<version>0.0.1-SNAPSHOT</version>
8-
<name>UserSignup Maven Webapp</name>
9-
<url>http://maven.apache.org</url>
10-
<dependencies>
11-
<dependency>
12-
<groupId>org.springframework</groupId>
13-
<artifactId>spring-webmvc</artifactId>
14-
<version>3.2.4.RELEASE</version>
15-
</dependency>
16-
<dependency>
17-
<groupId>javax.servlet</groupId>
18-
<artifactId>servlet-api</artifactId>
19-
<version>2.5</version>
20-
<scope>provided</scope>
21-
</dependency>
22-
<dependency>
23-
<groupId>javax.servlet</groupId>
24-
<artifactId>jstl</artifactId>
25-
<version>1.2</version>
26-
</dependency>
27-
<dependency>
28-
<groupId>mysql</groupId>
29-
<artifactId>mysql-connector-java</artifactId>
30-
<version>5.1.21</version>
31-
</dependency>
32-
<dependency>
33-
<groupId>org.hibernate</groupId>
34-
<artifactId>hibernate-validator</artifactId>
35-
<version>4.2.0.Final</version>
36-
</dependency>
37-
<dependency>
38-
<groupId>org.hibernate</groupId>
39-
<artifactId>hibernate-entitymanager</artifactId>
40-
<version>4.1.9.Final</version>
41-
</dependency>
42-
<dependency>
43-
<groupId>javax.transaction</groupId>
44-
<artifactId>jta</artifactId>
45-
<version>1.1</version>
46-
</dependency>
47-
<dependency>
48-
<groupId>org.springframework</groupId>
49-
<artifactId>spring-jdbc</artifactId>
50-
<version>3.2.0.RELEASE</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.springframework</groupId>
54-
<artifactId>spring-orm</artifactId>
55-
<version>3.2.0.RELEASE</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>org.springframework.data</groupId>
59-
<artifactId>spring-data-jpa</artifactId>
60-
<version>1.3.0.RELEASE</version>
61-
<exclusions>
62-
<exclusion>
63-
<groupId>org.springframework</groupId>
64-
<artifactId>spring-aop</artifactId>
65-
</exclusion>
66-
</exclusions>
67-
</dependency>
68-
</dependencies>
69-
<build>
70-
<finalName>UserSignup</finalName>
71-
</build>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.docker</groupId>
6+
<artifactId>UserSignup</artifactId>
7+
<packaging>war</packaging>
8+
<version>0.0.1-SNAPSHOT</version>
9+
<name>UserSignup Maven Webapp</name>
10+
<url>http://maven.apache.org</url>
11+
<dependencies>
12+
<dependency>
13+
<groupId>org.springframework</groupId>
14+
<artifactId>spring-webmvc</artifactId>
15+
<version>3.2.4.RELEASE</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>javax.servlet</groupId>
19+
<artifactId>servlet-api</artifactId>
20+
<version>2.5</version>
21+
<scope>provided</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>javax.servlet</groupId>
25+
<artifactId>jstl</artifactId>
26+
<version>1.2</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>mysql</groupId>
30+
<artifactId>mysql-connector-java</artifactId>
31+
<version>5.1.21</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.hibernate</groupId>
35+
<artifactId>hibernate-validator</artifactId>
36+
<version>4.2.0.Final</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.hibernate</groupId>
40+
<artifactId>hibernate-entitymanager</artifactId>
41+
<version>4.1.9.Final</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>javax.transaction</groupId>
45+
<artifactId>jta</artifactId>
46+
<version>1.1</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.springframework</groupId>
50+
<artifactId>spring-jdbc</artifactId>
51+
<version>3.2.0.RELEASE</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.springframework</groupId>
55+
<artifactId>spring-orm</artifactId>
56+
<version>3.2.0.RELEASE</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.springframework.data</groupId>
60+
<artifactId>spring-data-jpa</artifactId>
61+
<version>1.3.0.RELEASE</version>
62+
<exclusions>
63+
<exclusion>
64+
<groupId>org.springframework</groupId>
65+
<artifactId>spring-aop</artifactId>
66+
</exclusion>
67+
</exclusions>
68+
</dependency>
69+
</dependencies>
70+
<properties>
71+
<maven.compiler.source>1.8</maven.compiler.source>
72+
<maven.compiler.target>1.8</maven.compiler.target>
73+
</properties>
74+
<build>
75+
<finalName>UserSignup</finalName>
76+
</build>
7277
</project>

0 commit comments

Comments
 (0)