minor maven upgrades and cleanup

This commit is contained in:
eugenp 2013-07-04 12:49:12 +03:00
parent 270bd5b707
commit cb6253a2a5
2 changed files with 168 additions and 158 deletions

View File

@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung</groupId>
<artifactId>spring-hibernate3</artifactId>
@ -37,7 +38,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.17.1-GA</version>
<version>${javassist.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
@ -46,6 +47,12 @@
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-dbcp</artifactId>
<version>${tomcat-dbcp.version}</version>
</dependency>
<!-- utils -->
<dependency>
@ -153,10 +160,12 @@
<!-- Spring -->
<org.springframework.version>3.2.3.RELEASE</org.springframework.version>
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
<javassist.version>3.18.0-GA</javassist.version>
<!-- persistence -->
<hibernate.version>3.6.10.Final</hibernate.version>
<mysql-connector-java.version>5.1.25</mysql-connector-java.version>
<tomcat-dbcp.version>7.0.41</tomcat-dbcp.version>
<!-- logging -->
<org.slf4j.version>1.7.5</org.slf4j.version>
@ -177,12 +186,12 @@
<httpcore.version>4.2.4</httpcore.version>
<httpclient.version>4.2.5</httpclient.version>
<rest-assured.version>1.8.0</rest-assured.version>
<rest-assured.version>1.8.1</rest-assured.version>
<groovy.version>1.8.9</groovy.version>
<!-- Maven plugins -->
<cargo-maven2-plugin.version>1.4.2</cargo-maven2-plugin.version>
<maven-surefire-plugin.version>2.14.1</maven-surefire-plugin.version>
<maven-surefire-plugin.version>2.15</maven-surefire-plugin.version>
</properties>
</project>

View File

@ -50,7 +50,7 @@
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-dbcp</artifactId>
<version>7.0.41</version>
<version>${tomcat-dbcp.version}</version>
</dependency>
<!-- validation -->
@ -173,6 +173,7 @@
<!-- persistence -->
<hibernate.version>4.2.2.Final</hibernate.version>
<mysql-connector-java.version>5.1.25</mysql-connector-java.version>
<tomcat-dbcp.version>7.0.41</tomcat-dbcp.version>
<!-- logging -->
<org.slf4j.version>1.7.5</org.slf4j.version>