Skip to content

Commit 0ce14be

Browse files
committed
Upgraded to Spring Data JPA 1.0.3.RELEASE.
Upgrade to Spring 3.1.0 as well.
1 parent b95b389 commit 0ce14be

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

pom.xml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.springframework.data.jpa.examples</groupId>
66
<artifactId>spring-data-jpa-examples-parent</artifactId>
7-
<version>1.0.2.RELEASE</version>
7+
<version>1.0.3.RELEASE</version>
88
<packaging>pom</packaging>
99

1010
<name>Spring Data JPA sample projects</name>
@@ -27,7 +27,7 @@
2727
</developers>
2828

2929
<properties>
30-
<spring.version>3.0.6.RELEASE</spring.version>
30+
<spring.version>3.1.0.RELEASE</spring.version>
3131
<jpa.version>2.0.0</jpa.version>
3232
<junit.version>4.8</junit.version>
3333
<hibernate.version>3.5.6-Final</hibernate.version>
@@ -73,7 +73,19 @@
7373
<dependency>
7474
<groupId>org.springframework.data</groupId>
7575
<artifactId>spring-data-jpa</artifactId>
76-
<version>1.0.2.RELEASE</version>
76+
<version>1.0.3.RELEASE</version>
77+
</dependency>
78+
79+
<dependency>
80+
<groupId>org.springframework</groupId>
81+
<artifactId>spring-orm</artifactId>
82+
<version>${spring.version}</version>
83+
</dependency>
84+
85+
<dependency>
86+
<groupId>org.springframework</groupId>
87+
<artifactId>spring-core</artifactId>
88+
<version>${spring.version}</version>
7789
</dependency>
7890

7991
<dependency>
@@ -147,20 +159,15 @@
147159
<repository>
148160
<id>repository.springframework.maven.release</id>
149161
<name>Spring Framework Maven Release Repository</name>
150-
<url>http://repo.springsource.org/release</url>
151-
</repository>
152-
<repository>
153-
<id>jboss</id>
154-
<name>JBoss repository</name>
155-
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
162+
<url>http://repo.springsource.org/libs-release</url>
156163
</repository>
157164
</repositories>
158165

159166
<pluginRepositories>
160167
<pluginRepository>
161168
<id>repository.plugin.springsource.release</id>
162169
<name>SpringSource Maven Repository</name>
163-
<url>http://repository.springsource.com/maven/bundles/release</url>
170+
<url>http://repo.springsource.org/plugins-release</url>
164171
</pluginRepository>
165172
</pluginRepositories>
166173

spring-data-jpa-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.data.jpa.examples</groupId>
99
<artifactId>spring-data-jpa-examples-parent</artifactId>
10-
<version>1.0.2.RELEASE</version>
10+
<version>1.0.3.RELEASE</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

spring-data-jpa-showcase/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.data.jpa.examples</groupId>
99
<artifactId>spring-data-jpa-examples-parent</artifactId>
10-
<version>1.0.2.RELEASE</version>
10+
<version>1.0.3.RELEASE</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

0 commit comments

Comments
 (0)