Author: veithen
Date: Fri Jun 6 16:02:13 2014
New Revision: 1600943
URL: http://svn.apache.org/r1600943
Log:
Upgrade to the same (latest) Spring-WS version everywhere. Note that for
spring-ws-tests this means that we only validate that Axiom is compatible with
the latest version (and no longer try determine the oldest version with which
it is compatible). This also means that we can upgrade axiom-spring-ws to Java
1.6.
Modified:
webservices/axiom/trunk/axiom-spring-ws-testsuite/pom.xml
webservices/axiom/trunk/axiom-spring-ws/pom.xml
webservices/axiom/trunk/pom.xml
webservices/axiom/trunk/systests/spring-ws-tests/pom.xml
Modified: webservices/axiom/trunk/axiom-spring-ws-testsuite/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-spring-ws-testsuite/pom.xml?rev=1600943&r1=1600942&r2=1600943&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-spring-ws-testsuite/pom.xml (original)
+++ webservices/axiom/trunk/axiom-spring-ws-testsuite/pom.xml Fri Jun 6
16:02:13 2014
@@ -30,7 +30,6 @@
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
- <version>2.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Modified: webservices/axiom/trunk/axiom-spring-ws/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-spring-ws/pom.xml?rev=1600943&r1=1600942&r2=1600943&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-spring-ws/pom.xml (original)
+++ webservices/axiom/trunk/axiom-spring-ws/pom.xml Fri Jun 6 16:02:13 2014
@@ -31,7 +31,6 @@
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
- <version>2.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
@@ -78,8 +77,19 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <configuration>
+ <signature>
+ <groupId>org.codehaus.mojo.signature</groupId>
+ <artifactId>java16</artifactId>
+ <version>1.0</version>
+ </signature>
</configuration>
</plugin>
<plugin>
Modified: webservices/axiom/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1600943&r1=1600942&r2=1600943&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Fri Jun 6 16:02:13 2014
@@ -360,6 +360,11 @@
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
+ <dependency>
+ <groupId>org.springframework.ws</groupId>
+ <artifactId>spring-ws-core</artifactId>
+ <version>2.2.0.RELEASE</version>
+ </dependency>
</dependencies>
</dependencyManagement>
<properties>
@@ -686,15 +691,15 @@
<goals>
<goal>check</goal>
</goals>
- <configuration>
- <signature>
- <groupId>org.codehaus.mojo.signature</groupId>
- <artifactId>java15</artifactId>
- <version>1.0</version>
- </signature>
- </configuration>
</execution>
</executions>
+ <configuration>
+ <signature>
+ <groupId>org.codehaus.mojo.signature</groupId>
+ <artifactId>java15</artifactId>
+ <version>1.0</version>
+ </signature>
+ </configuration>
</plugin>
<plugin>
<!-- This serves two purposes:
Modified: webservices/axiom/trunk/systests/spring-ws-tests/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/spring-ws-tests/pom.xml?rev=1600943&r1=1600942&r2=1600943&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/spring-ws-tests/pom.xml (original)
+++ webservices/axiom/trunk/systests/spring-ws-tests/pom.xml Fri Jun 6
16:02:13 2014
@@ -35,7 +35,6 @@
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
- <version>2.1.2.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>