aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml25
1 files changed, 22 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index f6edf30..d18496b 100755
--- a/pom.xml
+++ b/pom.xml
@@ -22,17 +22,23 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
- <version>3.2.2.RELEASE</version>
+ <version>${version.spring}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
- <version>3.2.2.RELEASE</version>
+ <version>${version.spring}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
- <version>3.2.2.RELEASE</version>
+ <version>${version.spring}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-test</artifactId>
+ <version>${version.spring}</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
@@ -80,6 +86,16 @@
<artifactId>postgresql</artifactId>
<version>9.2-1002-jdbc4</version>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.11</version>
+ </dependency>
+ <dependency>
+ <groupId>org.easytesting</groupId>
+ <artifactId>fest-assert</artifactId>
+ <version>1.4</version>
+ </dependency>
</dependencies>
<dependencyManagement>
<dependencies>
@@ -95,6 +111,9 @@
</dependency>
</dependencies>
</dependencyManagement>
+ <properties>
+ <version.spring>3.2.2.RELEASE</version.spring>
+ </properties>
<build>
<plugins>
<plugin>