diff --git a/build.gradle b/build.gradle index fd7c870382..3e24f48d2c 100644 --- a/build.gradle +++ b/build.gradle @@ -123,7 +123,7 @@ configure(javaprojects) { mockitoVersion = '1.8.4' //springVersion = '3.1.0.M2' springVersion = '3.0.6.BUILD-SNAPSHOT' - springAmqpVersion = '1.0.0.RC2' + springAmqpVersion = '1.0.0.BUILD-SNAPSHOT' springDataMongoVersion = '1.0.0.BUILD-SNAPSHOT' springDataCommonsVersion = '1.2.0.BUILD-SNAPSHOT' springDataRedisVersion = '1.0.0.BUILD-SNAPSHOT' diff --git a/pom.xml b/pom.xml index 5b6833e553..d2596e7b24 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,9 @@ spring-integration-jmx spring-integration-mail spring-integration-mongodb + spring-integration-redis spring-integration-rmi + spring-integration-scripting spring-integration-security spring-integration-sftp spring-integration-stream diff --git a/spring-integration-amqp/pom.xml b/spring-integration-amqp/pom.xml index 804d69136b..62ac603b39 100644 --- a/spring-integration-amqp/pom.xml +++ b/spring-integration-amqp/pom.xml @@ -102,9 +102,9 @@ org.springframework.integration - spring-integration-core + spring-integration-stream 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -112,42 +112,48 @@ 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension 2.3 test - - org.springframework.amqp - spring-rabbit - 1.0.0.RC2 - compile - - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context - 3.1.0.M2 - compile - org.hamcrest hamcrest-all 1.1 test + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all 1.8.4 test + + org.springframework.amqp + spring-rabbit + 1.0.0.BUILD-SNAPSHOT + compile + log4j log4j diff --git a/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/inbound/AmqpInboundGateway.java b/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/inbound/AmqpInboundGateway.java index 8ef1495597..8ca8ae14e1 100644 --- a/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/inbound/AmqpInboundGateway.java +++ b/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/inbound/AmqpInboundGateway.java @@ -78,7 +78,7 @@ public class AmqpInboundGateway extends MessagingGatewaySupport { final org.springframework.integration.Message reply = sendAndReceiveMessage(request); if (reply != null) { // TODO: fallback to a reply address property of this gateway - Address replyTo = message.getMessageProperties().getReplyTo(); + Address replyTo = message.getMessageProperties().getReplyToAddress(); Assert.notNull(replyTo, "The replyTo header must not be null on a " + "request Message being handled by the AMQP inbound gateway."); amqpTemplate.convertAndSend(replyTo.getExchangeName(), replyTo.getRoutingKey(), reply.getPayload(), diff --git a/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/support/DefaultAmqpHeaderMapper.java b/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/support/DefaultAmqpHeaderMapper.java index d3091ac706..a848d6840d 100644 --- a/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/support/DefaultAmqpHeaderMapper.java +++ b/spring-integration-amqp/src/main/java/org/springframework/integration/amqp/support/DefaultAmqpHeaderMapper.java @@ -23,8 +23,6 @@ import java.util.Set; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; - -import org.springframework.amqp.core.Address; import org.springframework.amqp.core.MessageDeliveryMode; import org.springframework.amqp.core.MessageProperties; import org.springframework.integration.MessageHeaders; @@ -147,7 +145,7 @@ public class DefaultAmqpHeaderMapper implements AmqpHeaderMapper { if (redelivered != null) { amqpMessageProperties.setRedelivered(redelivered); } - Address replyTo = getHeaderIfAvailable(headers, AmqpHeaders.REPLY_TO, Address.class); + String replyTo = getHeaderIfAvailable(headers, AmqpHeaders.REPLY_TO, String.class); if (replyTo != null) { amqpMessageProperties.setReplyTo(replyTo); } @@ -265,7 +263,7 @@ public class DefaultAmqpHeaderMapper implements AmqpHeaderMapper { if (redelivered != null) { headers.put(AmqpHeaders.REDELIVERED, redelivered); } - Address replyTo = amqpMessageProperties.getReplyTo(); + String replyTo = amqpMessageProperties.getReplyTo(); if (replyTo != null) { headers.put(AmqpHeaders.REPLY_TO, replyTo); } diff --git a/spring-integration-core/pom.xml b/spring-integration-core/pom.xml index f610bb7282..5d99850fa7 100644 --- a/spring-integration-core/pom.xml +++ b/spring-integration-core/pom.xml @@ -102,16 +102,28 @@ org.springframework - spring-context - 3.1.0.M2 + spring-aop + 3.0.6.BUILD-SNAPSHOT compile + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.aspectj aspectjweaver 1.6.8 test + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + cglib cglib-nodep @@ -130,12 +142,6 @@ 2.3 test - - org.springframework - spring-aop - 3.1.0.M2 - compile - org.easymock easymockclassextension @@ -149,12 +155,6 @@ compile true - - org.springframework - spring-test - 3.1.0.M2 - test - org.hamcrest hamcrest-all @@ -167,19 +167,19 @@ 1.8.4 test - - org.springframework - spring-tx - 3.1.0.M2 - compile - true - org.aspectj aspectjrt 1.6.8 test + + org.springframework + spring-tx + 3.0.6.BUILD-SNAPSHOT + compile + true + junit junit-dep diff --git a/spring-integration-event/pom.xml b/spring-integration-event/pom.xml index 95d556f52c..41230dcf0f 100644 --- a/spring-integration-event/pom.xml +++ b/spring-integration-event/pom.xml @@ -102,9 +102,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -112,6 +112,12 @@ 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension @@ -119,28 +125,22 @@ test - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT + org.hamcrest + hamcrest-all + 1.1 test org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile - org.hamcrest - hamcrest-all - 1.1 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile org.mockito diff --git a/spring-integration-feed/pom.xml b/spring-integration-feed/pom.xml index 5ea54a86b8..3d69f94733 100644 --- a/spring-integration-feed/pom.xml +++ b/spring-integration-feed/pom.xml @@ -102,9 +102,9 @@ org.springframework - spring-context - 3.1.0.M2 - compile + spring-test + 3.0.6.BUILD-SNAPSHOT + test net.java.dev.rome @@ -118,6 +118,12 @@ + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + cglib cglib-nodep @@ -132,9 +138,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -148,18 +154,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - org.hamcrest hamcrest-all @@ -172,6 +166,12 @@ 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + net.java.dev.rome rome diff --git a/spring-integration-file/pom.xml b/spring-integration-file/pom.xml index 2972c24f38..36e6b5471f 100644 --- a/spring-integration-file/pom.xml +++ b/spring-integration-file/pom.xml @@ -102,9 +102,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -112,6 +112,12 @@ 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension @@ -119,28 +125,22 @@ test - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT + org.hamcrest + hamcrest-all + 1.1 test org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile - org.hamcrest - hamcrest-all - 1.1 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile org.mockito diff --git a/spring-integration-ftp/pom.xml b/spring-integration-ftp/pom.xml index ed607196ab..826c2d6679 100644 --- a/spring-integration-ftp/pom.xml +++ b/spring-integration-ftp/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.springframework.integration spring-integration-file @@ -118,6 +124,12 @@ 1.2.12 test + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test + commons-net commons-net @@ -136,24 +148,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context-support - 3.1.0.M2 - compile - javax.activation activation @@ -167,6 +161,12 @@ 1.1 test + + org.springframework + spring-context-support + 3.0.6.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-groovy/pom.xml b/spring-integration-groovy/pom.xml index 1a4f227663..675c6b3c73 100644 --- a/spring-integration-groovy/pom.xml +++ b/spring-integration-groovy/pom.xml @@ -100,34 +100,28 @@ - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - org.easymock easymock 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - org.springframework spring-context-support - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile @@ -142,6 +136,12 @@ 1.7.5 compile + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-http/pom.xml b/spring-integration-http/pom.xml index 63075d05eb..9fa1eb7814 100644 --- a/spring-integration-http/pom.xml +++ b/spring-integration-http/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + javax.servlet servlet-api @@ -118,17 +124,11 @@ 1.2.12 test - - org.springframework - spring-webmvc - 3.1.0.M2 - compile - org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -155,30 +155,30 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - org.hamcrest hamcrest-all 1.1 test + + org.springframework + spring-webmvc + 3.0.6.BUILD-SNAPSHOT + compile + org.mockito mockito-all 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + junit junit-dep diff --git a/spring-integration-ip/pom.xml b/spring-integration-ip/pom.xml index 4825e4f197..f6f8e1097a 100644 --- a/spring-integration-ip/pom.xml +++ b/spring-integration-ip/pom.xml @@ -102,9 +102,15 @@ org.springframework.integration - spring-integration-core + spring-integration-stream 2.1.0.BUILD-SNAPSHOT - compile + runtime + + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test org.easymock @@ -112,42 +118,36 @@ 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework.integration - spring-integration-stream - 2.1.0.BUILD-SNAPSHOT - runtime - - - org.springframework - spring-context - 3.1.0.M2 - compile - org.hamcrest hamcrest-all 1.1 test + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-jdbc/pom.xml b/spring-integration-jdbc/pom.xml index e9a80b7a46..4b2e4fe84f 100644 --- a/spring-integration-jdbc/pom.xml +++ b/spring-integration-jdbc/pom.xml @@ -107,15 +107,21 @@ org.springframework spring-jdbc - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile org.springframework - spring-context - 3.1.0.M2 + spring-aop + 3.0.6.BUILD-SNAPSHOT compile + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.apache.derby derby @@ -128,6 +134,12 @@ 1.6.8 test + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + log4j log4j @@ -142,9 +154,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test com.h2database @@ -158,30 +170,12 @@ 2.3 test - - org.springframework - spring-aop - 3.1.0.M2 - compile - org.easymock easymockclassextension 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - org.hamcrest hamcrest-all @@ -200,10 +194,16 @@ 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.springframework spring-tx - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile diff --git a/spring-integration-jms/pom.xml b/spring-integration-jms/pom.xml index 4cecff8020..82b44e620d 100644 --- a/spring-integration-jms/pom.xml +++ b/spring-integration-jms/pom.xml @@ -106,10 +106,16 @@ 5.3.0 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile @@ -130,34 +136,10 @@ 1.2.12 test - - org.springframework - spring-jms - 3.1.0.M2 - compile - - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - - - org.easymock - easymock - 2.3 - test - org.springframework spring-oxm - 3.1.0.M2 - test - - - org.easymock - easymockclassextension - 2.3 + 3.0.6.BUILD-SNAPSHOT test @@ -167,9 +149,15 @@ test - org.springframework - spring-test - 3.1.0.M2 + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 test @@ -184,10 +172,22 @@ 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + + + org.springframework + spring-jms + 3.0.6.BUILD-SNAPSHOT + compile + org.springframework spring-tx - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile diff --git a/spring-integration-jmx/pom.xml b/spring-integration-jmx/pom.xml index 38742aff75..5807f8adbb 100644 --- a/spring-integration-jmx/pom.xml +++ b/spring-integration-jmx/pom.xml @@ -102,9 +102,9 @@ org.springframework - spring-context - 3.1.0.M2 - compile + spring-test + 3.0.6.BUILD-SNAPSHOT + test org.aspectj @@ -112,6 +112,12 @@ 1.6.8 compile + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + cglib cglib-nodep @@ -126,9 +132,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -142,18 +148,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - org.hamcrest hamcrest-all @@ -166,6 +160,12 @@ 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.aspectj aspectjrt diff --git a/spring-integration-mail/pom.xml b/spring-integration-mail/pom.xml index ee68b7be4e..20a43f10de 100644 --- a/spring-integration-mail/pom.xml +++ b/spring-integration-mail/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + cglib cglib-nodep @@ -114,9 +120,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -130,24 +136,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context-support - 3.1.0.M2 - compile - javax.activation activation @@ -161,12 +149,24 @@ 1.1 test + + org.springframework + spring-context-support + 3.0.6.BUILD-SNAPSHOT + compile + org.mockito mockito-all 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + javax.mail mail diff --git a/spring-integration-mongodb/pom.xml b/spring-integration-mongodb/pom.xml index f4dd74208a..f566e7dd81 100644 --- a/spring-integration-mongodb/pom.xml +++ b/spring-integration-mongodb/pom.xml @@ -100,6 +100,48 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + + + org.springframework.data + spring-data-commons-core + 1.2.0.BUILD-SNAPSHOT + compile + + + org.springframework.data + spring-data-mongodb + 1.0.0.BUILD-SNAPSHOT + compile + + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test + org.easymock easymock @@ -112,30 +154,6 @@ 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.data - spring-data-mongodb - 1.0.0.BUILD-SNAPSHOT - compile - - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - - - org.springframework - spring-context - 3.1.0.M2 - compile - org.hamcrest hamcrest-all @@ -149,16 +167,10 @@ test - log4j - log4j - 1.2.12 - test - - - cglib - cglib-nodep - 2.2 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile junit diff --git a/spring-integration-redis/pom.xml b/spring-integration-redis/pom.xml index 2f354a3683..a81e427f75 100644 --- a/spring-integration-redis/pom.xml +++ b/spring-integration-redis/pom.xml @@ -101,15 +101,9 @@ - org.easymock - easymock - 2.3 - test - - - org.easymock - easymockclassextension - 2.3 + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT test @@ -118,12 +112,6 @@ 1.2.0.BUILD-SNAPSHOT compile - - org.springframework - spring-test - 3.1.0.M2 - test - org.springframework.data spring-data-redis @@ -133,9 +121,39 @@ org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + org.hamcrest hamcrest-all @@ -149,16 +167,10 @@ test - log4j - log4j - 1.2.12 - test - - - cglib - cglib-nodep - 2.2 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile junit @@ -166,12 +178,6 @@ 4.8.2 test - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - UTF8 diff --git a/spring-integration-rmi/pom.xml b/spring-integration-rmi/pom.xml index 91f0ba08d3..c6fd208573 100644 --- a/spring-integration-rmi/pom.xml +++ b/spring-integration-rmi/pom.xml @@ -102,8 +102,14 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT + test + + + org.springframework + spring-aop + 3.0.6.BUILD-SNAPSHOT compile @@ -114,9 +120,9 @@ org.springframework - spring-aop - 3.1.0.M2 - compile + spring-test + 3.0.6.BUILD-SNAPSHOT + test org.easymock @@ -125,28 +131,22 @@ test - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT + org.hamcrest + hamcrest-all + 1.1 test org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile - org.hamcrest - hamcrest-all - 1.1 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile org.mockito diff --git a/spring-integration-scripting/pom.xml b/spring-integration-scripting/pom.xml index b5e09a4aea..744a4752da 100644 --- a/spring-integration-scripting/pom.xml +++ b/spring-integration-scripting/pom.xml @@ -100,6 +100,12 @@ + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test + org.easymock easymock @@ -107,15 +113,15 @@ test - org.easymock - easymockclassextension - 2.3 + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT test - org.springframework - spring-test - 3.1.0.M2 + org.easymock + easymockclassextension + 2.3 test @@ -136,6 +142,12 @@ 2.1.0.BUILD-SNAPSHOT compile + + org.codehaus.groovy + groovy-all + 1.7.5 + test + log4j log4j @@ -148,24 +160,12 @@ 2.2 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - junit junit-dep 4.8.2 test - - org.codehaus.groovy - grovy-all - 1.7.5 - test - org.jruby jruby diff --git a/spring-integration-security/pom.xml b/spring-integration-security/pom.xml index 640f0e820d..05352f13b5 100644 --- a/spring-integration-security/pom.xml +++ b/spring-integration-security/pom.xml @@ -100,6 +100,18 @@ + + org.springframework + spring-aop + 3.0.6.BUILD-SNAPSHOT + compile + + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.springframework.security spring-security-core @@ -124,36 +136,18 @@ 1.2.12 test - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - org.easymock easymock 2.3 test - - org.springframework - spring-aop - 3.1.0.M2 - compile - org.easymock easymockclassextension 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - org.hamcrest hamcrest-all @@ -166,6 +160,12 @@ 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.springframework.security spring-security-config @@ -181,7 +181,7 @@ org.springframework spring-tx - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile diff --git a/spring-integration-sftp/pom.xml b/spring-integration-sftp/pom.xml index 92bf86854e..47e19663c8 100644 --- a/spring-integration-sftp/pom.xml +++ b/spring-integration-sftp/pom.xml @@ -100,6 +100,12 @@ + + org.springframework.integration + spring-integration-stream + 2.1.0.BUILD-SNAPSHOT + compile + com.jcraft jsch @@ -107,10 +113,10 @@ compile - org.springframework.integration - spring-integration-stream - 2.1.0.BUILD-SNAPSHOT - compile + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test org.springframework.integration @@ -132,9 +138,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -148,24 +154,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context-support - 3.1.0.M2 - compile - javax.activation activation @@ -179,6 +167,18 @@ 1.1 test + + org.springframework + spring-context-support + 3.0.6.BUILD-SNAPSHOT + compile + + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-stream/pom.xml b/spring-integration-stream/pom.xml index 98b447ad3a..a8d03a1f68 100644 --- a/spring-integration-stream/pom.xml +++ b/spring-integration-stream/pom.xml @@ -100,18 +100,18 @@ - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - org.easymock easymock 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension @@ -119,22 +119,22 @@ test - org.springframework - spring-test - 3.1.0.M2 + org.hamcrest + hamcrest-all + 1.1 test org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile - org.hamcrest - hamcrest-all - 1.1 - test + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile org.mockito diff --git a/spring-integration-test/pom.xml b/spring-integration-test/pom.xml index 58c5766eba..a87768976d 100644 --- a/spring-integration-test/pom.xml +++ b/spring-integration-test/pom.xml @@ -100,48 +100,48 @@ - - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT - compile - org.easymock easymock 2.3 test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.easymock easymockclassextension 2.3 test - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context - 3.1.0.M2 - compile - org.hamcrest hamcrest-all 1.1 test + + org.springframework + spring-context + 3.0.6.BUILD-SNAPSHOT + compile + org.mockito mockito-all 1.8.4 compile + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + log4j log4j diff --git a/spring-integration-twitter/pom.xml b/spring-integration-twitter/pom.xml index d899a911d9..0a897bc661 100644 --- a/spring-integration-twitter/pom.xml +++ b/spring-integration-twitter/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.twitter4j twitter4j-core @@ -120,9 +126,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -136,24 +142,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - - - org.springframework - spring-context-support - 3.1.0.M2 - compile - javax.activation activation @@ -167,12 +155,24 @@ 1.1 test + + org.springframework + spring-context-support + 3.0.6.BUILD-SNAPSHOT + compile + org.mockito mockito-all 1.8.4 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + junit junit-dep diff --git a/spring-integration-ws/pom.xml b/spring-integration-ws/pom.xml index 20214b7a41..69fc487b92 100644 --- a/spring-integration-ws/pom.xml +++ b/spring-integration-ws/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + com.sun.xml.messaging.saaj saaj-impl @@ -116,7 +122,7 @@ org.springframework spring-expression - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile @@ -131,6 +137,12 @@ 2.2 test + + org.springframework + spring-oxm + 3.0.6.BUILD-SNAPSHOT + compile + javax.xml.soap saaj-api @@ -146,9 +158,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -162,30 +174,12 @@ 2.3 test - - org.springframework - spring-oxm - 3.1.0.M2 - compile - stax stax-api 1.0.1 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - javax.activation activation @@ -199,6 +193,12 @@ 1.1 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-xml/pom.xml b/spring-integration-xml/pom.xml index bc53f3b173..ce269276a8 100644 --- a/spring-integration-xml/pom.xml +++ b/spring-integration-xml/pom.xml @@ -100,6 +100,12 @@ + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + org.springframework.ws spring-xml @@ -115,7 +121,7 @@ org.springframework spring-context - 3.1.0.M2 + 3.0.6.BUILD-SNAPSHOT compile @@ -143,11 +149,17 @@ test - org.springframework.integration - spring-integration-core - 2.1.0.BUILD-SNAPSHOT + org.springframework + spring-oxm + 3.0.6.BUILD-SNAPSHOT compile + + org.springframework.integration + spring-integration-test + 2.1.0.BUILD-SNAPSHOT + test + org.easymock easymock @@ -160,30 +172,12 @@ 2.3 test - - org.springframework - spring-oxm - 3.1.0.M2 - compile - - - org.springframework - spring-test - 3.1.0.M2 - test - stax stax-api 1.0.1 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - javax.activation activation @@ -197,6 +191,12 @@ 1.1 test + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all diff --git a/spring-integration-xmpp/pom.xml b/spring-integration-xmpp/pom.xml index f282bbb4d0..6ac9f88a8e 100644 --- a/spring-integration-xmpp/pom.xml +++ b/spring-integration-xmpp/pom.xml @@ -106,6 +106,12 @@ 2.1.0.BUILD-SNAPSHOT test + + org.springframework + spring-test + 3.0.6.BUILD-SNAPSHOT + test + cglib cglib-nodep @@ -120,9 +126,9 @@ org.springframework.integration - spring-integration-core + spring-integration-test 2.1.0.BUILD-SNAPSHOT - compile + test org.easymock @@ -136,18 +142,6 @@ 2.3 test - - org.springframework.integration - spring-integration-test - 2.1.0.BUILD-SNAPSHOT - test - - - org.springframework - spring-test - 3.1.0.M2 - test - javax.activation activation @@ -161,12 +155,6 @@ 3.1.0 compile - - org.springframework - spring-context-support - 3.1.0.M2 - compile - jivesoftware smackx @@ -179,6 +167,18 @@ 1.1 test + + org.springframework + spring-context-support + 3.0.6.BUILD-SNAPSHOT + compile + + + org.springframework.integration + spring-integration-core + 2.1.0.BUILD-SNAPSHOT + compile + org.mockito mockito-all