Skip to content

Commit

Permalink
Upgraded to Spring Data JPA 1.0.3.RELEASE.
Browse files Browse the repository at this point in the history
Upgrade to Spring 3.1.0 as well.
  • Loading branch information
odrotbohm committed Feb 16, 2012
1 parent b95b389 commit 0ce14be
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
27 changes: 17 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.springframework.data.jpa.examples</groupId>
<artifactId>spring-data-jpa-examples-parent</artifactId>
<version>1.0.2.RELEASE</version>
<version>1.0.3.RELEASE</version>
<packaging>pom</packaging>

<name>Spring Data JPA sample projects</name>
Expand All @@ -27,7 +27,7 @@
</developers>

<properties>
<spring.version>3.0.6.RELEASE</spring.version>
<spring.version>3.1.0.RELEASE</spring.version>
<jpa.version>2.0.0</jpa.version>
<junit.version>4.8</junit.version>
<hibernate.version>3.5.6-Final</hibernate.version>
Expand Down Expand Up @@ -73,7 +73,19 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.0.2.RELEASE</version>
<version>1.0.3.RELEASE</version>
</dependency>

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

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

<dependency>
Expand Down Expand Up @@ -147,20 +159,15 @@
<repository>
<id>repository.springframework.maven.release</id>
<name>Spring Framework Maven Release Repository</name>
<url>http://repo.springsource.org/release</url>
</repository>
<repository>
<id>jboss</id>
<name>JBoss repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
<url>http://repo.springsource.org/libs-release</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repository.plugin.springsource.release</id>
<name>SpringSource Maven Repository</name>
<url>http://repository.springsource.com/maven/bundles/release</url>
<url>http://repo.springsource.org/plugins-release</url>
</pluginRepository>
</pluginRepositories>

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 @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.data.jpa.examples</groupId>
<artifactId>spring-data-jpa-examples-parent</artifactId>
<version>1.0.2.RELEASE</version>
<version>1.0.3.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

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 @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.data.jpa.examples</groupId>
<artifactId>spring-data-jpa-examples-parent</artifactId>
<version>1.0.2.RELEASE</version>
<version>1.0.3.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 0ce14be

Please sign in to comment.