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

Commit

Permalink
Dependency updates.
Browse files Browse the repository at this point in the history
Updated to Spring 3.2.1.RELEASE plus necessary additional dependency declarations. Moved repository declaration to Gemfire as it's only needed to pull in the Gemfire JAR. Upgraded to Hibernate 4.1.9, HSQLDB 2.2.9, QueryDsl 2.9.0. Upgraded plugin dependencies to compiler plugin 3.0, Surefire plugin 2.13.
  • Loading branch information
odrotbohm committed Jan 28, 2013
1 parent a40bfed commit e2414d1
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 16 deletions.
11 changes: 11 additions & 0 deletions gemfire/pom.xml
Expand Up @@ -34,6 +34,7 @@
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -45,4 +46,14 @@
</plugins>
</build>

<repositories>
<repository>
<id>spring-releases</id>
<url>http://repo.springsource.org/libs-release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>
10 changes: 8 additions & 2 deletions jpa/pom.xml
Expand Up @@ -28,6 +28,12 @@
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
</dependency>

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

<dependency>
<groupId>org.springframework</groupId>
Expand All @@ -46,7 +52,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.1.6.Final</version>
<version>4.1.9.Final</version>
<scope>runtime</scope>
</dependency>

Expand All @@ -63,7 +69,7 @@
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
<scope>runtime</scope>
</dependency>

Expand Down
19 changes: 5 additions & 14 deletions pom.xml
Expand Up @@ -10,10 +10,10 @@
<name>Spring Data Book</name>

<properties>
<spring.version>3.2.0.RC1</spring.version>
<spring.version>3.2.1.RELEASE</spring.version>
<slf4j.version>1.7.1</slf4j.version>
<logback.version>1.0.6</logback.version>
<querydsl.version>2.8.2</querydsl.version>
<querydsl.version>2.9.0</querydsl.version>
<hamcrest.version>1.3</hamcrest.version>
</properties>

Expand Down Expand Up @@ -71,6 +71,7 @@
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -117,7 +118,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand All @@ -127,20 +128,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.2</version>
<version>2.13</version>
</plugin>

</plugins>
</build>

<repositories>
<repository>
<id>spring-milestones</id>
<url>http://repo.springsource.org/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>
6 changes: 6 additions & 0 deletions rest/pom.xml
Expand Up @@ -51,6 +51,12 @@
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
</dependency>

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

<dependency>
<groupId>org.springframework</groupId>
Expand Down

0 comments on commit e2414d1

Please sign in to comment.