diff --git a/build.gradle b/build.gradle
index 681c428ade..c76bd059c4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -62,7 +62,7 @@ allprojects {
// default set of maven repositories to be used when resolving dependencies
repositories {
- mavenRepo urls: 'http://maven.springframework.org/snapshot'
+ //mavenRepo urls: 'http://maven.springframework.org/snapshot'
mavenCentral()
mavenRepo urls: 'http://maven.springframework.org/release'
mavenRepo urls: 'http://maven.springframework.org/milestone'
@@ -121,9 +121,9 @@ configure(javaprojects) {
junitVersion = '4.8.2'
log4jVersion = '1.2.12'
mockitoVersion = '1.8.4'
- springVersion = '3.0.5.RELEASE'
- springSecurityVersion = '3.0.5.RELEASE'
- springWsVersion = '2.0.2.RELEASE'
+ springVersion = '3.0.7.RELEASE'
+ springSecurityVersion = '3.0.7.RELEASE'
+ springWsVersion = '2.0.3.RELEASE'
sourceSets {
test {
@@ -333,19 +333,13 @@ project('spring-integration-rmi') {
compileJava.options.compilerArgs = ["${xLintArg},-deprecation"]
}
-
project('spring-integration-security') {
description = 'Spring Integration Security Support'
dependencies {
compile project(":spring-integration-core")
compile "org.springframework:spring-aop:$springVersion"
compile "org.springframework:spring-tx:$springVersion"
- compile("org.springframework.security:spring-security-core:$springSecurityVersion") {
- exclude group: 'org.springframework', module: 'spring-support'
- }
- compile("org.springframework.security:spring-security-config:$springSecurityVersion") {
- exclude group: 'org.springframework', module: 'spring-support'
- }
+ compile "org.springframework.security:spring-security-config:$springSecurityVersion"
}
}
@@ -397,7 +391,11 @@ project('spring-integration-ws') {
compile project(":spring-integration-core")
compile "org.springframework:spring-expression:$springVersion"
compile "org.springframework:spring-oxm:$springVersion"
- compile "org.springframework.ws:spring-ws-core:$springWsVersion"
+ compile("org.springframework.ws:spring-ws-core:$springWsVersion") {
+ exclude group: 'org.springframework', module: 'spring-context-support'
+ exclude group: 'org.springframework', module: 'spring-web'
+ exclude group: 'org.springframework', module: 'spring-webmvc'
+ }
compile("javax.xml.soap:saaj-api:1.3") {
optional = true
exclude group: 'javax.activation', module: 'activation'
diff --git a/spring-integration-core/pom.xml b/spring-integration-core/pom.xml
index 747f63eb50..961615bf90 100644
--- a/spring-integration-core/pom.xml
+++ b/spring-integration-core/pom.xml
@@ -72,38 +72,40 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-context
- 3.0.5.RELEASE
+ spring-test
+ 3.0.7.RELEASE
+ test
+
+
+ org.springframework
+ spring-aop
+ 3.0.7.RELEASE
compile
@@ -112,6 +114,13 @@
1.6.8
test
+
+ org.springframework
+ spring-tx
+ 3.0.7.RELEASE
+ compile
+ true
+
cglib
cglib-nodep
@@ -124,18 +133,18 @@
1.2.12
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
-
- org.springframework
- spring-aop
- 3.0.5.RELEASE
- compile
-
org.easymock
easymockclassextension
@@ -149,19 +158,6 @@
compile
true
-
- org.springframework
- spring-tx
- 3.0.5.RELEASE
- compile
- true
-
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
diff --git a/spring-integration-event/pom.xml b/spring-integration-event/pom.xml
index 98554e6837..50c8706234 100644
--- a/spring-integration-event/pom.xml
+++ b/spring-integration-event/pom.xml
@@ -72,76 +72,78 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
log4j
log4j
@@ -154,12 +156,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-feed/pom.xml b/spring-integration-feed/pom.xml
index 5b3f64c847..e18e51ef37 100644
--- a/spring-integration-feed/pom.xml
+++ b/spring-integration-feed/pom.xml
@@ -72,39 +72,35 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
net.java.dev.rome
@@ -130,6 +126,12 @@
1.2.12
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
@@ -142,18 +144,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -172,6 +162,12 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
net.java.dev.rome
rome
diff --git a/spring-integration-file/pom.xml b/spring-integration-file/pom.xml
index 0ef2d28c82..f9f22ec41d 100644
--- a/spring-integration-file/pom.xml
+++ b/spring-integration-file/pom.xml
@@ -72,76 +72,78 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
log4j
log4j
@@ -154,12 +156,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-ftp/pom.xml b/spring-integration-ftp/pom.xml
index d5cff47d59..bc764b81fb 100644
--- a/spring-integration-ftp/pom.xml
+++ b/spring-integration-ftp/pom.xml
@@ -72,34 +72,42 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
+ compile
+
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.springframework.integration
spring-integration-file
@@ -136,12 +144,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
javax.activation
activation
@@ -149,12 +151,6 @@
compile
true
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -168,10 +164,10 @@
test
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
- compile
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
junit
diff --git a/spring-integration-groovy/pom.xml b/spring-integration-groovy/pom.xml
index 2b84104af9..2c310f9589 100644
--- a/spring-integration-groovy/pom.xml
+++ b/spring-integration-groovy/pom.xml
@@ -72,40 +72,48 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
@@ -118,12 +126,6 @@
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.codehaus.groovy
groovy-all
@@ -137,9 +139,9 @@
test
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
compile
@@ -154,12 +156,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-http/pom.xml b/spring-integration-http/pom.xml
index 649404fb9c..23a03c485c 100644
--- a/spring-integration-http/pom.xml
+++ b/spring-integration-http/pom.xml
@@ -72,39 +72,35 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-webmvc
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
javax.servlet
@@ -112,6 +108,12 @@
2.4
provided
+
+ org.springframework
+ spring-webmvc
+ 3.0.7.RELEASE
+ compile
+
cglib
cglib-nodep
@@ -149,18 +151,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -179,6 +169,12 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
diff --git a/spring-integration-http/src/test/java/org/springframework/integration/http/support/DefaultHttpHeaderMapperFromMessageInboundTests.java b/spring-integration-http/src/test/java/org/springframework/integration/http/support/DefaultHttpHeaderMapperFromMessageInboundTests.java
index 8a9bbfdd11..3dcd35f661 100644
--- a/spring-integration-http/src/test/java/org/springframework/integration/http/support/DefaultHttpHeaderMapperFromMessageInboundTests.java
+++ b/spring-integration-http/src/test/java/org/springframework/integration/http/support/DefaultHttpHeaderMapperFromMessageInboundTests.java
@@ -174,11 +174,11 @@ public class DefaultHttpHeaderMapperFromMessageInboundTests {
public void validateETag(){
HeaderMapper mapper = DefaultHttpHeaderMapper.inboundMapper();
Map messageHeaders = new HashMap();
- messageHeaders.put("ETag", "1234");
+ messageHeaders.put("ETag", "\"1234\"");
HttpHeaders headers = new HttpHeaders();
mapper.fromHeaders(new MessageHeaders(messageHeaders), headers);
- assertEquals("1234", headers.getETag());
+ assertEquals("\"1234\"", headers.getETag());
}
// Expires tests
diff --git a/spring-integration-httpinvoker/pom.xml b/spring-integration-httpinvoker/pom.xml
index bedf64c6ec..3812d7b3a7 100644
--- a/spring-integration-httpinvoker/pom.xml
+++ b/spring-integration-httpinvoker/pom.xml
@@ -72,40 +72,30 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
-
- org.springframework
- spring-web
- 3.0.5.RELEASE
- compile
-
org.easymock
easymock
@@ -114,9 +104,9 @@
org.springframework
- spring-aop
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
org.easymock
@@ -124,24 +114,36 @@
2.3
test
+
+ org.springframework
+ spring-aop
+ 3.0.7.RELEASE
+ compile
+
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework
+ spring-web
+ 3.0.7.RELEASE
+ compile
+
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
javax.servlet
servlet-api
@@ -160,12 +162,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-ip/pom.xml b/spring-integration-ip/pom.xml
index 13cd3d759a..d494b4d2e6 100644
--- a/spring-integration-ip/pom.xml
+++ b/spring-integration-ip/pom.xml
@@ -72,40 +72,48 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
@@ -118,36 +126,30 @@
2.0.6.BUILD-SNAPSHOT
runtime
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
log4j
log4j
@@ -160,12 +162,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-jdbc/pom.xml b/spring-integration-jdbc/pom.xml
index a61ec78e17..127730fed1 100644
--- a/spring-integration-jdbc/pom.xml
+++ b/spring-integration-jdbc/pom.xml
@@ -72,19 +72,15 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://objectstyle.org/maven2/
@@ -92,28 +88,34 @@
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
spring-jdbc
- 3.0.5.RELEASE
+ 3.0.7.RELEASE
compile
org.springframework
- spring-context
- 3.0.5.RELEASE
+ spring-test
+ 3.0.7.RELEASE
+ test
+
+
+ org.springframework
+ spring-aop
+ 3.0.7.RELEASE
compile
@@ -128,6 +130,12 @@
1.6.8
test
+
+ org.springframework
+ spring-tx
+ 3.0.7.RELEASE
+ compile
+
log4j
log4j
@@ -140,6 +148,12 @@
2.2
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
com.h2database
h2
@@ -152,42 +166,18 @@
2.3
test
-
- org.springframework
- spring-aop
- 3.0.5.RELEASE
- compile
-
org.easymock
easymockclassextension
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-tx
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
hsqldb
hsqldb
@@ -200,18 +190,24 @@
1.8.4
test
-
- org.aspectj
- aspectjrt
- 1.6.8
- test
-
org.springframework.integration
spring-integration-core
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
+
+ org.aspectj
+ aspectjrt
+ 1.6.8
+ test
+
junit
junit-dep
diff --git a/spring-integration-jms/pom.xml b/spring-integration-jms/pom.xml
index 2249092e66..fbe6de0ffb 100644
--- a/spring-integration-jms/pom.xml
+++ b/spring-integration-jms/pom.xml
@@ -72,31 +72,27 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
@@ -108,20 +104,14 @@
org.springframework
- spring-jms
- 3.0.5.RELEASE
- compile
-
-
- org.springframework
- spring-oxm
- 3.0.5.RELEASE
+ spring-test
+ 3.0.7.RELEASE
test
org.springframework
- spring-context
- 3.0.5.RELEASE
+ spring-tx
+ 3.0.7.RELEASE
compile
@@ -142,6 +132,12 @@
1.2.12
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
@@ -154,22 +150,10 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
org.springframework
- spring-tx
- 3.0.5.RELEASE
- compile
-
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
+ spring-oxm
+ 3.0.7.RELEASE
test
@@ -190,12 +174,24 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
4.8.2
test
+
+ org.springframework
+ spring-jms
+ 3.0.7.RELEASE
+ compile
+
UTF8
diff --git a/spring-integration-jmx/pom.xml b/spring-integration-jmx/pom.xml
index 554dc16a37..75928b6551 100644
--- a/spring-integration-jmx/pom.xml
+++ b/spring-integration-jmx/pom.xml
@@ -72,39 +72,35 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
org.aspectj
@@ -124,6 +120,12 @@
1.2.12
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
@@ -136,18 +138,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -161,15 +151,21 @@
test
- org.aspectj
- aspectjrt
- 1.6.8
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
compile
org.springframework.integration
- spring-integration-core
+ spring-integration-test
2.0.6.BUILD-SNAPSHOT
+ test
+
+
+ org.aspectj
+ aspectjrt
+ 1.6.8
compile
diff --git a/spring-integration-mail/pom.xml b/spring-integration-mail/pom.xml
index 5fb7fef181..3e824e9ef5 100644
--- a/spring-integration-mail/pom.xml
+++ b/spring-integration-mail/pom.xml
@@ -72,34 +72,42 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
+ compile
+
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
cglib
cglib-nodep
@@ -124,12 +132,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
javax.activation
activation
@@ -137,12 +139,6 @@
compile
true
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -155,18 +151,18 @@
1.8.4
test
-
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
- compile
-
org.springframework.integration
spring-integration-core
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
javax.mail
mail
diff --git a/spring-integration-rmi/pom.xml b/spring-integration-rmi/pom.xml
index 178dcb5a39..fa1275a4ca 100644
--- a/spring-integration-rmi/pom.xml
+++ b/spring-integration-rmi/pom.xml
@@ -72,34 +72,36 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
@@ -108,9 +110,9 @@
org.springframework
- spring-aop
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
org.easymock
@@ -118,16 +120,10 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
org.springframework
- spring-context
- 3.0.5.RELEASE
+ spring-aop
+ 3.0.7.RELEASE
compile
@@ -136,18 +132,24 @@
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
log4j
log4j
@@ -160,12 +162,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-security/pom.xml b/spring-integration-security/pom.xml
index 95e1d8e8dd..4c824816e2 100644
--- a/spring-integration-security/pom.xml
+++ b/spring-integration-security/pom.xml
@@ -72,58 +72,30 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
-
- org.springframework.security
- spring-security-core
- 3.0.5.RELEASE
- compile
-
-
- spring-support
- org.springframework
-
-
-
-
- cglib
- cglib-nodep
- 2.2
- test
-
-
- log4j
- log4j
- 1.2.12
- test
-
org.easymock
easymock
@@ -132,9 +104,9 @@
org.springframework
- spring-aop
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
org.easymock
@@ -144,22 +116,22 @@
org.springframework
- spring-tx
- 3.0.5.RELEASE
+ spring-aop
+ 3.0.7.RELEASE
compile
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
1.1
test
+
+ org.springframework.security
+ spring-security-config
+ 3.0.7.RELEASE
+ compile
+
org.mockito
mockito-all
@@ -167,16 +139,10 @@
test
- org.springframework.security
- spring-security-config
- 3.0.5.RELEASE
+ org.springframework
+ spring-tx
+ 3.0.7.RELEASE
compile
-
-
- spring-support
- org.springframework
-
-
org.springframework.integration
@@ -184,6 +150,18 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ log4j
+ log4j
+ 1.2.12
+ test
+
+
+ cglib
+ cglib-nodep
+ 2.2
+ test
+
junit
junit-dep
diff --git a/spring-integration-sftp/pom.xml b/spring-integration-sftp/pom.xml
index efdf5c1bd2..e318391c24 100644
--- a/spring-integration-sftp/pom.xml
+++ b/spring-integration-sftp/pom.xml
@@ -72,31 +72,27 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
@@ -107,17 +103,29 @@
compile
- org.springframework.integration
- spring-integration-file
- 2.0.6.BUILD-SNAPSHOT
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
compile
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
log4j
log4j
1.2.12
test
+
+ org.springframework.integration
+ spring-integration-file
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
cglib
cglib-nodep
@@ -136,12 +144,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
org.springframework.integration
spring-integration-stream
@@ -155,12 +157,6 @@
compile
true
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -173,18 +169,18 @@
1.8.4
test
-
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
- compile
-
org.springframework.integration
spring-integration-core
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
diff --git a/spring-integration-stream/pom.xml b/spring-integration-stream/pom.xml
index b468bbd212..e3c2598873 100644
--- a/spring-integration-stream/pom.xml
+++ b/spring-integration-stream/pom.xml
@@ -72,70 +72,72 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
2.3
test
-
- org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
test
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
log4j
log4j
@@ -148,12 +150,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-test/pom.xml b/spring-integration-test/pom.xml
index b996929fa5..0d26072038 100644
--- a/spring-integration-test/pom.xml
+++ b/spring-integration-test/pom.xml
@@ -72,70 +72,72 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
2.3
test
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.easymock
easymockclassextension
2.3
test
-
- org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
1.8.4
compile
+
+ org.springframework.integration
+ spring-integration-core
+ 2.0.6.BUILD-SNAPSHOT
+ compile
+
log4j
log4j
@@ -148,12 +150,6 @@
2.2
test
-
- org.springframework.integration
- spring-integration-core
- 2.0.6.BUILD-SNAPSHOT
- compile
-
junit
junit-dep
diff --git a/spring-integration-twitter/pom.xml b/spring-integration-twitter/pom.xml
index eba12c4dee..1a15dcd066 100644
--- a/spring-integration-twitter/pom.xml
+++ b/spring-integration-twitter/pom.xml
@@ -72,34 +72,42 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
+ compile
+
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
org.twitter4j
twitter4j-core
@@ -130,12 +138,6 @@
2.3
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
javax.activation
activation
@@ -143,12 +145,6 @@
compile
true
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -161,18 +157,18 @@
1.8.4
test
-
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
- compile
-
org.springframework.integration
spring-integration-core
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
diff --git a/spring-integration-ws/pom.xml b/spring-integration-ws/pom.xml
index 925f23c7aa..b868ae4058 100644
--- a/spring-integration-ws/pom.xml
+++ b/spring-integration-ws/pom.xml
@@ -72,39 +72,35 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-expression
- 3.0.5.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
com.sun.xml.messaging.saaj
@@ -113,24 +109,12 @@
compile
true
-
- org.springframework
- spring-oxm
- 3.0.5.RELEASE
- compile
-
log4j
log4j
1.2.12
test
-
- org.springframework.ws
- spring-ws-core
- 2.0.2.RELEASE
- compile
-
cglib
cglib-nodep
@@ -150,6 +134,26 @@
true
+
+ org.springframework.ws
+ spring-ws-core
+ 2.0.3.RELEASE
+ compile
+
+
+ spring-web
+ org.springframework
+
+
+ spring-webmvc
+ org.springframework
+
+
+ spring-context-support
+ org.springframework
+
+
+
org.easymock
easymock
@@ -168,12 +172,6 @@
1.0.1
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
javax.activation
activation
@@ -182,15 +180,21 @@
true
- org.hamcrest
- hamcrest-all
- 1.1
- test
+ org.springframework
+ spring-expression
+ 3.0.7.RELEASE
+ compile
org.springframework
- spring-test
- 3.0.5.RELEASE
+ spring-oxm
+ 3.0.7.RELEASE
+ compile
+
+
+ org.hamcrest
+ hamcrest-all
+ 1.1
test
@@ -205,6 +209,12 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
diff --git a/spring-integration-xml/pom.xml b/spring-integration-xml/pom.xml
index 401eef98d2..d3b64ef25c 100644
--- a/spring-integration-xml/pom.xml
+++ b/spring-integration-xml/pom.xml
@@ -72,51 +72,35 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
org.springframework
- spring-context
- 3.0.5.RELEASE
- compile
-
-
- org.springframework
- spring-oxm
- 3.0.5.RELEASE
- compile
-
-
- org.springframework.ws
- spring-xml
- 2.0.2.RELEASE
- compile
+ spring-test
+ 3.0.7.RELEASE
+ test
xmlunit
@@ -148,6 +132,12 @@
2.0EA3
test
+
+ org.springframework
+ spring-context
+ 3.0.7.RELEASE
+ compile
+
org.easymock
easymock
@@ -167,10 +157,10 @@
test
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
+ org.springframework.ws
+ spring-xml
+ 2.0.3.RELEASE
+ compile
javax.activation
@@ -179,18 +169,18 @@
compile
true
+
+ org.springframework
+ spring-oxm
+ 3.0.7.RELEASE
+ compile
+
org.hamcrest
hamcrest-all
1.1
test
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.mockito
mockito-all
@@ -203,6 +193,12 @@
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep
diff --git a/spring-integration-xmpp/pom.xml b/spring-integration-xmpp/pom.xml
index accd4801ba..efc3114f65 100644
--- a/spring-integration-xmpp/pom.xml
+++ b/spring-integration-xmpp/pom.xml
@@ -72,34 +72,42 @@
http://download.java.net/maven/2
- http://download.java.net/maven/2
+ http://download.java.net/maven/2/
http://maven.springframework.org/milestone
- http://maven.springframework.org/milestone
+ http://maven.springframework.org/milestone/
http://maven.springframework.org/release
- http://maven.springframework.org/release
-
-
- http://maven.springframework.org/snapshot
- http://maven.springframework.org/snapshot
+ http://maven.springframework.org/release/
http://repository.springsource.com/maven/bundles/external
- http://repository.springsource.com/maven/bundles/external
+ http://repository.springsource.com/maven/bundles/external/
http://repository.springsource.com/maven/bundles/milestone
- http://repository.springsource.com/maven/bundles/milestone
+ http://repository.springsource.com/maven/bundles/milestone/
http://repository.springsource.com/maven/bundles/release
- http://repository.springsource.com/maven/bundles/release
+ http://repository.springsource.com/maven/bundles/release/
+
+ org.springframework
+ spring-context-support
+ 3.0.7.RELEASE
+ compile
+
+
+ org.springframework
+ spring-test
+ 3.0.7.RELEASE
+ test
+
cglib
cglib-nodep
@@ -130,12 +138,6 @@
2.0.6.BUILD-SNAPSHOT
test
-
- org.springframework.integration
- spring-integration-test
- 2.0.6.BUILD-SNAPSHOT
- test
-
javax.activation
activation
@@ -155,12 +157,6 @@
3.1.0
compile
-
- org.springframework
- spring-test
- 3.0.5.RELEASE
- test
-
org.hamcrest
hamcrest-all
@@ -173,18 +169,18 @@
1.8.4
test
-
- org.springframework
- spring-context-support
- 3.0.5.RELEASE
- compile
-
org.springframework.integration
spring-integration-core
2.0.6.BUILD-SNAPSHOT
compile
+
+ org.springframework.integration
+ spring-integration-test
+ 2.0.6.BUILD-SNAPSHOT
+ test
+
junit
junit-dep