maven upgrade to spring 3.2
This commit is contained in:
parent
2a3ec485d0
commit
757843907d
|
@ -220,7 +220,7 @@
|
|||
<version>${maven-surefire-plugin.version}</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<!-- <exclude>**/*ProductionTest.java</exclude> -->
|
||||
<exclude>**/*LiveTest.java</exclude>
|
||||
</excludes>
|
||||
<systemPropertyVariables>
|
||||
<!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
|
||||
|
@ -256,7 +256,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
|
||||
<!-- persistence -->
|
||||
<hibernate.version>4.3.0.Final</hibernate.version>
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.junit.Test;
|
|||
import org.w3c.dom.Document;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
public class CrawlTest {
|
||||
public class CrawlLiveTest {
|
||||
|
||||
private DefaultHttpClient client;
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
|
||||
<!-- persistence -->
|
||||
<hibernate.version>4.3.0.Final</hibernate.version>
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
|
||||
<!-- persistence -->
|
||||
<hibernate.version>4.3.0.Final</hibernate.version>
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
|
||||
<!-- persistence -->
|
||||
<hibernate.version>4.3.0.Final</hibernate.version>
|
||||
|
|
|
@ -193,7 +193,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
<javassist.version>3.18.1-GA</javassist.version>
|
||||
<jstl.version>1.2</jstl.version>
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
<javassist.version>3.18.1-GA</javassist.version>
|
||||
<jstl.version>1.2</jstl.version>
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ public class Cause4MappingExceptionIntegrationTest {
|
|||
|
||||
configuration.addAnnotatedClass(Foo.class);
|
||||
|
||||
final ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry();
|
||||
final ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
|
||||
final SessionFactory sessionFactory = configuration.buildSessionFactory(serviceRegistry);
|
||||
return sessionFactory;
|
||||
}
|
||||
|
|
|
@ -175,7 +175,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
<javassist.version>3.18.1-GA</javassist.version>
|
||||
|
||||
<!-- persistence -->
|
||||
|
|
|
@ -183,7 +183,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
<javassist.version>3.18.1-GA</javassist.version>
|
||||
|
||||
<!-- persistence -->
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:beans="http://www.springframework.org/schema/beans"
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
|
||||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
|
||||
|
||||
<http access-denied-page="/access-denied.html" use-expressions="true">
|
||||
|
|
|
@ -178,7 +178,7 @@
|
|||
<properties>
|
||||
<!-- Spring -->
|
||||
<org.springframework.version>3.2.6.RELEASE</org.springframework.version>
|
||||
<org.springframework.security.version>3.1.4.RELEASE</org.springframework.security.version>
|
||||
<org.springframework.security.version>3.2.0.RELEASE</org.springframework.security.version>
|
||||
|
||||
<!-- persistence -->
|
||||
<hibernate.version>4.3.0.Final</hibernate.version>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:beans="http://www.springframework.org/schema/beans"
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
|
||||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
|
||||
|
||||
<http access-denied-page="/access-denied.html" use-expressions="true">
|
||||
|
|
Loading…
Reference in New Issue