Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #503 from timothystone/master
Browse files Browse the repository at this point in the history
Spring Data JPA Update for Java Dev Tools Debugging App
  • Loading branch information
justincormack authored Apr 18, 2022
2 parents 12b50ab + 4b41cad commit 1bcbb14
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions developer-tools/java-debugging/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<groupId>com.docker</groupId>
<artifactId>UserSignup</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
<name>UserSignup Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.4.RELEASE</version>
<version>${spring.release}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down Expand Up @@ -48,12 +48,12 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>3.2.0.RELEASE</version>
<version>${spring.release}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>3.2.0.RELEASE</version>
<version>${spring.release}</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
Expand All @@ -66,10 +66,17 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.6.2</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.release>4.3.25.RELEASE</spring.release>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<finalName>UserSignup</finalName>
Expand Down

0 comments on commit 1bcbb14

Please sign in to comment.