diff --git a/.gitignore b/.gitignore index 9da248c4fd..9acdc1f895 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1,19 @@ -*.msg *.iml *.ipr *.iws +*.msg *.sw? */src/main/java/META-INF .classpath .gradle +.idea .project .settings build derby.log lib logs -pom.xml si.java.hsp spring-integration-jms/activemq-data/ spring-integration-samples/loanshark/application.log* target -.idea diff --git a/build.gradle b/build.gradle index 572396d417..d59267bf32 100644 --- a/build.gradle +++ b/build.gradle @@ -39,6 +39,8 @@ def buildSrcDir = "$rootDir/buildSrc" apply from: "$buildSrcDir/wrapper.gradle" apply from: "$buildSrcDir/maven-root-pom.gradle" +// Tie pom generation into the standard build lifecycle (INT-1609) +assemble.dependsOn generatePom // ----------------------------------------------------------------------------- @@ -93,7 +95,7 @@ configure(javaprojects) { apply plugin: 'idea' // `gradle idea` to generate .ipr/.iml apply plugin: 'bundlor' // all core projects should be OSGi-compliant - // ensure JDK 5 compatibility + // ensure JDK 5 compatibility (GRADLE-18; INT-1578) sourceCompatibility=1.5 targetCompatibility=1.5 @@ -148,6 +150,9 @@ configure(javaprojects) { // generate .classpath files without GRADLE_CACHE variable (GRADLE-1079) eclipseClasspath.variables = [:] + + // Tie pom generation into the standard build lifecycle (INT-1609) + assemble.dependsOn generatePom } diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000000..6602add2ac --- /dev/null +++ b/pom.xml @@ -0,0 +1,34 @@ + + + 4.0.0 + org.springframework.integration + spring-integration + 2.0.0.BUILD-SNAPSHOT + pom + Spring Integration + + spring-integration-core + spring-integration-event + spring-integration-feed + spring-integration-file + spring-integration-ftp + spring-integration-groovy + spring-integration-http + spring-integration-httpinvoker + spring-integration-ip + spring-integration-jdbc + spring-integration-jms + spring-integration-jmx + spring-integration-mail + spring-integration-rmi + spring-integration-security + spring-integration-sftp + spring-integration-stream + spring-integration-test + spring-integration-twitter + spring-integration-ws + spring-integration-xml + spring-integration-xmpp + + diff --git a/spring-integration-core/pom.xml b/spring-integration-core/pom.xml new file mode 100644 index 0000000000..d69311e7c8 --- /dev/null +++ b/spring-integration-core/pom.xml @@ -0,0 +1,163 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + Spring Integration Core + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-context + 3.0.5.RELEASE + compile + + + org.aspectj + aspectjweaver + 1.6.8 + test + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.springframework + spring-aop + 3.0.5.RELEASE + compile + + + org.easymock + easymockclassextension + 2.3 + test + + + org.codehaus.jackson + jackson-mapper-asl + 1.4.3 + 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 + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.aspectj + aspectjrt + 1.6.8 + test + + + + UTF8 + + diff --git a/spring-integration-event/pom.xml b/spring-integration-event/pom.xml new file mode 100644 index 0000000000..1e93cef2af --- /dev/null +++ b/spring-integration-event/pom.xml @@ -0,0 +1,143 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-event + 2.0.0.BUILD-SNAPSHOT + Spring Integration Event Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.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 + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-feed/pom.xml b/spring-integration-feed/pom.xml new file mode 100644 index 0000000000..74ade1399d --- /dev/null +++ b/spring-integration-feed/pom.xml @@ -0,0 +1,161 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-feed + 2.0.0.BUILD-SNAPSHOT + Spring Integration RSS Feed Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-context + 3.0.5.RELEASE + compile + + + net.java.dev.rome + rome-fetcher + 1.0.0 + compile + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + commons-lang + commons-lang + 2.5 + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + net.java.dev.rome + rome + 1.0.0 + compile + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-file/pom.xml b/spring-integration-file/pom.xml new file mode 100644 index 0000000000..c708411293 --- /dev/null +++ b/spring-integration-file/pom.xml @@ -0,0 +1,143 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-file + 2.0.0.BUILD-SNAPSHOT + Spring Integration File Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.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 + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-ftp/pom.xml b/spring-integration-ftp/pom.xml new file mode 100644 index 0000000000..02d78072ba --- /dev/null +++ b/spring-integration-ftp/pom.xml @@ -0,0 +1,168 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-ftp + 2.0.0.BUILD-SNAPSHOT + Spring Integration FTP Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.easymock + easymock + 2.3 + test + + + commons-net + commons-net + 2.0 + compile + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + org.springframework.integration + spring-integration-file + 2.0.0.BUILD-SNAPSHOT + compile + + + commons-lang + commons-lang + 2.5 + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + commons-io + commons-io + 1.4 + compile + + + + UTF8 + + diff --git a/spring-integration-groovy/pom.xml b/spring-integration-groovy/pom.xml new file mode 100644 index 0000000000..0c8bf3d20e --- /dev/null +++ b/spring-integration-groovy/pom.xml @@ -0,0 +1,143 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-groovy + 2.0.0.BUILD-SNAPSHOT + Spring Integration Groovy Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.codehaus.groovy + groovy-all + 1.7.5 + compile + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-http/pom.xml b/spring-integration-http/pom.xml new file mode 100644 index 0000000000..fd1e7a69b3 --- /dev/null +++ b/spring-integration-http/pom.xml @@ -0,0 +1,156 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-http + 2.0.0.BUILD-SNAPSHOT + Spring Integration HTTP Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-webmvc + 3.0.5.RELEASE + compile + + + javax.servlet + servlet-api + 2.4 + provided + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + commons-httpclient + commons-httpclient + 3.1 + compile + true + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-httpinvoker/pom.xml b/spring-integration-httpinvoker/pom.xml new file mode 100644 index 0000000000..da76bf1b3a --- /dev/null +++ b/spring-integration-httpinvoker/pom.xml @@ -0,0 +1,149 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-httpinvoker + 2.0.0.BUILD-SNAPSHOT + Spring Integration HttpInvoker Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-web + 3.0.5.RELEASE + compile + + + org.easymock + easymock + 2.3 + test + + + org.springframework + spring-aop + 3.0.5.RELEASE + compile + + + org.easymock + easymockclassextension + 2.3 + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.mockito + mockito-all + 1.8.4 + test + + + javax.servlet + servlet-api + 2.4 + provided + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-ip/pom.xml b/spring-integration-ip/pom.xml new file mode 100644 index 0000000000..2585ac878c --- /dev/null +++ b/spring-integration-ip/pom.xml @@ -0,0 +1,149 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-ip + 2.0.0.BUILD-SNAPSHOT + Spring Integration IP Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + test + + + org.springframework.integration + spring-integration-stream + 2.0.0.BUILD-SNAPSHOT + runtime + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.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 + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-jdbc/pom.xml b/spring-integration-jdbc/pom.xml new file mode 100644 index 0000000000..b121b5df4c --- /dev/null +++ b/spring-integration-jdbc/pom.xml @@ -0,0 +1,191 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-jdbc + 2.0.0.BUILD-SNAPSHOT + Spring Integration JDBC Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-jdbc + 3.0.5.RELEASE + compile + + + org.springframework + spring-context + 3.0.5.RELEASE + compile + + + org.apache.derby + derby + 10.5.3.0_1 + test + + + org.aspectj + aspectjweaver + 1.6.8 + test + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + com.h2database + h2 + 1.2.125 + test + + + org.easymock + easymock + 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.0.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 + 1.8.0.10 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.aspectj + aspectjrt + 1.6.8 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-jms/pom.xml b/spring-integration-jms/pom.xml new file mode 100644 index 0000000000..44d252e7ba --- /dev/null +++ b/spring-integration-jms/pom.xml @@ -0,0 +1,173 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-jms + 2.0.0.BUILD-SNAPSHOT + Spring Integration JMS Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.apache.activemq + activemq-core + 5.3.0 + test + + + org.springframework + spring-jms + 3.0.5.RELEASE + compile + + + org.springframework + spring-oxm + 3.0.5.RELEASE + test + + + org.springframework + spring-context + 3.0.5.RELEASE + compile + + + org.apache.geronimo.specs + geronimo-jms_1.1_spec + 1.1 + provided + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + org.springframework + spring-tx + 3.0.5.RELEASE + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-jmx/pom.xml b/spring-integration-jmx/pom.xml new file mode 100644 index 0000000000..3ace60194e --- /dev/null +++ b/spring-integration-jmx/pom.xml @@ -0,0 +1,149 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-jmx + 2.0.0.BUILD-SNAPSHOT + Spring Integration JMX Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + 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.aspectj + aspectjweaver + 1.6.8 + compile + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.aspectj + aspectjrt + 1.6.8 + compile + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-mail/pom.xml b/spring-integration-mail/pom.xml new file mode 100644 index 0000000000..5bcc5bc03e --- /dev/null +++ b/spring-integration-mail/pom.xml @@ -0,0 +1,156 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-mail + 2.0.0.BUILD-SNAPSHOT + Spring Integration Mail Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + javax.mail + mail + 1.4.1 + provided + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-rmi/pom.xml b/spring-integration-rmi/pom.xml new file mode 100644 index 0000000000..6c04f8e6ea --- /dev/null +++ b/spring-integration-rmi/pom.xml @@ -0,0 +1,143 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-rmi + 2.0.0.BUILD-SNAPSHOT + Spring Integration RMI Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + test + + + org.springframework + spring-aop + 3.0.5.RELEASE + compile + + + 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 + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-security/pom.xml b/spring-integration-security/pom.xml new file mode 100644 index 0000000000..d41276a7fc --- /dev/null +++ b/spring-integration-security/pom.xml @@ -0,0 +1,167 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-security + 2.0.0.BUILD-SNAPSHOT + Spring Integration Security Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.springframework + spring-aop + 3.0.5.RELEASE + compile + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework + spring-tx + 3.0.5.RELEASE + compile + + + org.springframework.security + spring-security-config + 3.0.4.RELEASE + compile + + + spring-support + org.springframework + + + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.springframework.security + spring-security-core + 3.0.4.RELEASE + compile + + + spring-support + org.springframework + + + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-sftp/pom.xml b/spring-integration-sftp/pom.xml new file mode 100644 index 0000000000..bfdc62b150 --- /dev/null +++ b/spring-integration-sftp/pom.xml @@ -0,0 +1,174 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-sftp + 2.0.0.BUILD-SNAPSHOT + Spring Integration SFTP Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + com.jcraft + jsch + 0.1.42 + compile + + + org.springframework.integration + spring-integration-stream + 2.0.0.BUILD-SNAPSHOT + compile + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + javax.activation + activation + 1.1.1 + compile + true + + + org.springframework.integration + spring-integration-file + 2.0.0.BUILD-SNAPSHOT + compile + + + commons-lang + commons-lang + 2.5 + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + junit + junit + 4.7 + test + + + commons-io + commons-io + 1.4 + compile + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-stream/pom.xml b/spring-integration-stream/pom.xml new file mode 100644 index 0000000000..9e03b9767e --- /dev/null +++ b/spring-integration-stream/pom.xml @@ -0,0 +1,137 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-stream + 2.0.0.BUILD-SNAPSHOT + Spring Integration Stream Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + 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 + + + junit + junit + 4.7 + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-test/pom.xml b/spring-integration-test/pom.xml new file mode 100644 index 0000000000..18c3f73b23 --- /dev/null +++ b/spring-integration-test/pom.xml @@ -0,0 +1,137 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + Spring Integration Test Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.easymock + easymock + 2.3 + 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 + + + junit + junit + 4.7 + compile + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-twitter/pom.xml b/spring-integration-twitter/pom.xml new file mode 100644 index 0000000000..1165a00604 --- /dev/null +++ b/spring-integration-twitter/pom.xml @@ -0,0 +1,168 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-twitter + 2.0.0.BUILD-SNAPSHOT + Spring Integration Twitter Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + log4j + log4j + 1.2.12 + test + + + org.twitter4j + twitter4j-core + 2.1.3 + compile + + + cglib + cglib-nodep + 2.2 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + commons-lang + commons-lang + 2.5 + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + junit + junit + 4.7 + test + + + commons-io + commons-io + 1.4 + compile + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-ws/pom.xml b/spring-integration-ws/pom.xml new file mode 100644 index 0000000000..36cbc9fe0a --- /dev/null +++ b/spring-integration-ws/pom.xml @@ -0,0 +1,182 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-ws + 2.0.0.BUILD-SNAPSHOT + Spring Integration Web Services Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-expression + 3.0.5.RELEASE + compile + + + com.sun.xml.messaging.saaj + saaj-impl + 1.3 + compile + true + + + org.springframework + spring-oxm + 3.0.5.RELEASE + compile + + + org.springframework.ws + spring-ws-core + 1.5.9 + compile + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + javax.xml.soap + saaj-api + 1.3 + compile + + + activation + javax.activation + + + true + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-xml/pom.xml b/spring-integration-xml/pom.xml new file mode 100644 index 0000000000..b0f1f8d4fc --- /dev/null +++ b/spring-integration-xml/pom.xml @@ -0,0 +1,168 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-xml + 2.0.0.BUILD-SNAPSHOT + Spring Integration XML Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework + spring-context + 3.0.5.RELEASE + compile + + + org.springframework + spring-oxm + 3.0.5.RELEASE + compile + + + xmlunit + xmlunit + 1.2 + test + + + cglib + cglib-nodep + 2.2 + test + + + log4j + log4j + 1.2.12 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.springframework.ws + spring-xml + 1.5.9 + compile + + + org.mockito + mockito-all + 1.8.4 + test + + + junit + junit + 4.7 + test + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + + diff --git a/spring-integration-xmpp/pom.xml b/spring-integration-xmpp/pom.xml new file mode 100644 index 0000000000..ec61ddc53b --- /dev/null +++ b/spring-integration-xmpp/pom.xml @@ -0,0 +1,180 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-xmpp + 2.0.0.BUILD-SNAPSHOT + Spring Integration XMPP Support + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + src/main/java + + **/* + + + **/*.java + + + + src/main/resources + + **/* + + + + + + src/test/java + + **/* + + + **/*.java + + + + src/test/resources + + **/* + + + + + + maven-compiler-plugin + + 1.5 + 1.5 + + + + maven-surefire-plugin + + + **/*Tests.java + + + **/*Abstract*.java + + + + + + + + org.springframework.integration + spring-integration-stream + 2.0.0.BUILD-SNAPSHOT + test + + + log4j + log4j + 1.2.12 + test + + + cglib + cglib-nodep + 2.2 + test + + + org.easymock + easymock + 2.3 + test + + + org.easymock + easymockclassextension + 2.3 + test + + + org.springframework.integration + spring-integration-test + 2.0.0.BUILD-SNAPSHOT + test + + + javax.activation + activation + 1.1.1 + compile + true + + + jivesoftware + smack + 3.1.0 + compile + + + jivesoftware + smackx + 3.1.0 + compile + + + commons-lang + commons-lang + 2.5 + compile + + + org.springframework + spring-test + 3.0.5.RELEASE + test + + + org.hamcrest + hamcrest-all + 1.1 + test + + + org.mockito + mockito-all + 1.8.4 + test + + + org.springframework + spring-context-support + 3.0.5.RELEASE + compile + + + junit + junit + 4.7 + test + + + commons-io + commons-io + 1.4 + compile + + + org.springframework.integration + spring-integration-core + 2.0.0.BUILD-SNAPSHOT + compile + + + + UTF8 + +