Skip to content

Commit

Permalink
General project polish.
Browse files Browse the repository at this point in the history
Upgraded to latest Spring and JUnit releases. Fixed dependency setup.
  • Loading branch information
odrotbohm committed Dec 19, 2012
1 parent 7d7ecb8 commit 65ecdba
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
26 changes: 19 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
</developers>

<properties>
<spring.version>3.1.3.RELEASE</spring.version>
<spring.version>3.2.0.RELEASE</spring.version>
<jpa.version>2.0.0</jpa.version>
<junit.version>4.8</junit.version>
<junit.version>4.11</junit.version>
<hibernate.version>4.1.4.Final</hibernate.version>
<slf4j.version>1.6.6</slf4j.version>
<aspectj.version>1.6.12</aspectj.version>
Expand Down Expand Up @@ -69,16 +69,22 @@
</build>

<dependencies>

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.2.0.RELEASE</version>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>

Expand All @@ -87,6 +93,12 @@
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.2.0.RELEASE</version>
</dependency>

<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion spring-data-jpa-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<relativePath>../pom.xml</relativePath>
</parent>

<name>Spring Data JPA sample</name>
<name>Spring Data JPA - Sample project</name>
<description>Small sample project showing the usage of Sprign Data JPA.</description>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spring-data-jpa-showcase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<relativePath>../pom.xml</relativePath>
</parent>

<name>Spring Data JPA showcase</name>
<name>Spring Data JPA - Refactoring showcase</name>
<description>Sample project showing how Spring Data JPA eases implementing repositories over a plain JPA/Spring approach</description>

<properties>
Expand Down

0 comments on commit 65ecdba

Please sign in to comment.