diff --git a/build-spring-integration/build.xml b/build-spring-integration/build.xml index 05af953085..2aec74c5ce 100644 --- a/build-spring-integration/build.xml +++ b/build-spring-integration/build.xml @@ -5,7 +5,6 @@ - diff --git a/build-spring-integration/pom.xml b/build-spring-integration/pom.xml index 3b9bc65d66..e007c3ee1f 100644 --- a/build-spring-integration/pom.xml +++ b/build-spring-integration/pom.xml @@ -20,7 +20,6 @@ ../spring-integration-parent ../org.springframework.integration ../org.springframework.integration.security - ../org.springframework.integration.adapter ../org.springframework.integration.event ../org.springframework.integration.file ../org.springframework.integration.http @@ -40,9 +39,9 @@ http://www.springsource.com - https://fisheye.springframework.org/browse/spring-integration - scm:svn:https://src.springframework.org/svn/spring-integration - scm:svn:https://src.springframework.org/svn/spring-integration/trunk + https://fisheye.springsource.org/browse/spring-integration + scm:svn:https://src.springsource.org/svn/spring-integration + scm:svn:https://src.springsource.org/svn/spring-integration/trunk JIRA @@ -52,13 +51,13 @@ Spring Integration Forum - http://forum.springframework.org/forumdisplay.php?f=42 - http://forum.springframework.org/forumdisplay.php?f=42 + http://forum.springsource.org/forumdisplay.php?f=42 + http://forum.springsource.org/forumdisplay.php?f=42 Bamboo - https://build.springframework.org/browse/INT + https://build.springsource.org/browse/INT diff --git a/build-spring-integration/publish.xml b/build-spring-integration/publish.xml index d7eea169aa..07f4ab5b8a 100644 --- a/build-spring-integration/publish.xml +++ b/build-spring-integration/publish.xml @@ -7,7 +7,6 @@ - diff --git a/org.springframework.integration.adapter/.classpath b/org.springframework.integration.adapter/.classpath deleted file mode 100644 index ddc9103c5c..0000000000 --- a/org.springframework.integration.adapter/.classpath +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/org.springframework.integration.adapter/.project b/org.springframework.integration.adapter/.project deleted file mode 100644 index 5ea3d1a6be..0000000000 --- a/org.springframework.integration.adapter/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - spring-integration-adapter - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.maven.ide.eclipse.maven2Nature - org.eclipse.jdt.core.javanature - - diff --git a/org.springframework.integration.adapter/.settings/org.eclipse.jdt.core.prefs b/org.springframework.integration.adapter/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 38e4cdc2e5..0000000000 --- a/org.springframework.integration.adapter/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,5 +0,0 @@ -#Mon Mar 01 13:40:51 GMT 2010 -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 -org.eclipse.jdt.core.compiler.compliance=1.5 -org.eclipse.jdt.core.compiler.source=1.5 diff --git a/org.springframework.integration.adapter/.settings/org.maven.ide.eclipse.prefs b/org.springframework.integration.adapter/.settings/org.maven.ide.eclipse.prefs deleted file mode 100644 index b2b77e81bb..0000000000 --- a/org.springframework.integration.adapter/.settings/org.maven.ide.eclipse.prefs +++ /dev/null @@ -1,9 +0,0 @@ -#Mon Mar 01 13:38:47 GMT 2010 -activeProfiles= -eclipse.preferences.version=1 -fullBuildGoals=process-test-resources -includeModules=false -resolveWorkspaceProjects=true -resourceFilterGoals=process-resources resources\:testResources -skipCompilerPlugin=true -version=1 diff --git a/org.springframework.integration.adapter/build.xml b/org.springframework.integration.adapter/build.xml deleted file mode 100644 index 63609ff858..0000000000 --- a/org.springframework.integration.adapter/build.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/org.springframework.integration.adapter/ivy.xml b/org.springframework.integration.adapter/ivy.xml deleted file mode 100644 index f41c1ca30a..0000000000 --- a/org.springframework.integration.adapter/ivy.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/org.springframework.integration.adapter/pom.xml b/org.springframework.integration.adapter/pom.xml deleted file mode 100644 index 553a80f8af..0000000000 --- a/org.springframework.integration.adapter/pom.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - 4.0.0 - org.springframework.integration - spring-integration-adapter - jar - Spring Integration Adapters - - org.springframework.integration - spring-integration-parent - 2.0.0.BUILD-SNAPSHOT - ../spring-integration-parent - - - - junit - junit - ${junit.version} - test - - - org.springframework - spring-context - ${spring.version} - compile - - - org.springframework.integration - spring-integration-core - ${project.version} - compile - - - - diff --git a/org.springframework.integration.adapter/src/main/java/org/springframework/integration/adapter/MessageMappingException.java b/org.springframework.integration.adapter/src/main/java/org/springframework/integration/adapter/MessageMappingException.java deleted file mode 100644 index faf34902cc..0000000000 --- a/org.springframework.integration.adapter/src/main/java/org/springframework/integration/adapter/MessageMappingException.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2002-2010 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.springframework.integration.adapter; - -import org.springframework.integration.core.Message; -import org.springframework.integration.core.MessagingException; - -/** - * Exception that indicates an error during message mapping. - * - * @author Mark Fisher - */ -@SuppressWarnings("serial") -public class MessageMappingException extends MessagingException { - - public MessageMappingException(String description) { - super(description); - } - - public MessageMappingException(String description, Throwable cause) { - super(description, cause); - } - - public MessageMappingException(Message failedMessage, String description) { - super(failedMessage, description); - } - - public MessageMappingException(Message failedMessage, String description, Throwable cause) { - super(failedMessage, description, cause); - } - -} diff --git a/org.springframework.integration.adapter/src/main/resources/.gitignore b/org.springframework.integration.adapter/src/main/resources/.gitignore deleted file mode 100644 index f935021a8f..0000000000 --- a/org.springframework.integration.adapter/src/main/resources/.gitignore +++ /dev/null @@ -1 +0,0 @@ -!.gitignore diff --git a/org.springframework.integration.adapter/src/test/java/.gitignore b/org.springframework.integration.adapter/src/test/java/.gitignore deleted file mode 100644 index f935021a8f..0000000000 --- a/org.springframework.integration.adapter/src/test/java/.gitignore +++ /dev/null @@ -1 +0,0 @@ -!.gitignore diff --git a/org.springframework.integration.adapter/template.mf b/org.springframework.integration.adapter/template.mf deleted file mode 100644 index f2a68a20ac..0000000000 --- a/org.springframework.integration.adapter/template.mf +++ /dev/null @@ -1,11 +0,0 @@ -Bundle-SymbolicName: org.springframework.integration.adapter -Bundle-Name: Spring Integration Adapters -Bundle-Vendor: SpringSource -Bundle-ManifestVersion: 2 -Import-Template: - org.apache.commons.logging;version="[1.1.1, 2.0.0)", - org.springframework.beans.*;version="[3.0.0, 4.0.0)", - org.springframework.remoting;version="[3.0.0, 4.0.0)", - org.springframework.util;version="[3.0.0, 4.0.0)", - org.springframework.integration.*;version="[2.0.0, 2.0.1)", - org.w3c.dom.*;version="0" diff --git a/org.springframework.integration.httpinvoker/ivy.xml b/org.springframework.integration.httpinvoker/ivy.xml index 0703ca2cf7..d2eacd9f20 100644 --- a/org.springframework.integration.httpinvoker/ivy.xml +++ b/org.springframework.integration.httpinvoker/ivy.xml @@ -26,7 +26,6 @@ - diff --git a/org.springframework.integration.ip/ivy.xml b/org.springframework.integration.ip/ivy.xml index a01f7108c9..9578586509 100644 --- a/org.springframework.integration.ip/ivy.xml +++ b/org.springframework.integration.ip/ivy.xml @@ -26,7 +26,6 @@ - diff --git a/org.springframework.integration.jms/ivy.xml b/org.springframework.integration.jms/ivy.xml index 19f3104067..23d6b872b4 100644 --- a/org.springframework.integration.jms/ivy.xml +++ b/org.springframework.integration.jms/ivy.xml @@ -28,7 +28,6 @@ - diff --git a/org.springframework.integration.mail/ivy.xml b/org.springframework.integration.mail/ivy.xml index bf8574e8b4..3598ab299c 100644 --- a/org.springframework.integration.mail/ivy.xml +++ b/org.springframework.integration.mail/ivy.xml @@ -29,7 +29,6 @@ - diff --git a/org.springframework.integration.rmi/ivy.xml b/org.springframework.integration.rmi/ivy.xml index 1e127f303e..33937c8eda 100644 --- a/org.springframework.integration.rmi/ivy.xml +++ b/org.springframework.integration.rmi/ivy.xml @@ -25,7 +25,6 @@ - diff --git a/org.springframework.integration.test/ivy.xml b/org.springframework.integration.test/ivy.xml index d59ab42c88..44c133c04c 100644 --- a/org.springframework.integration.test/ivy.xml +++ b/org.springframework.integration.test/ivy.xml @@ -22,7 +22,6 @@ - diff --git a/org.springframework.integration.ws/ivy.xml b/org.springframework.integration.ws/ivy.xml index df4ca3a259..a14b41a727 100644 --- a/org.springframework.integration.ws/ivy.xml +++ b/org.springframework.integration.ws/ivy.xml @@ -23,15 +23,15 @@ - + - + \ No newline at end of file diff --git a/org.springframework.integration.ws/pom.xml b/org.springframework.integration.ws/pom.xml index 527553cec1..5cc4470802 100644 --- a/org.springframework.integration.ws/pom.xml +++ b/org.springframework.integration.ws/pom.xml @@ -32,7 +32,7 @@ org.springframework.integration - spring-integration-adapter + spring-integration-core ${project.version} compile diff --git a/pom.xml b/pom.xml index 87e1cd0958..5e6130bea5 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,6 @@ spring-integration-parent org.springframework.integration - org.springframework.integration.adapter org.springframework.integration.test org.springframework.integration.event org.springframework.integration.file diff --git a/spring-integration-samples/pom.xml b/spring-integration-samples/pom.xml index 32d8017624..39f0a11618 100644 --- a/spring-integration-samples/pom.xml +++ b/spring-integration-samples/pom.xml @@ -30,11 +30,6 @@ org.springframework.integration ${release.version} - - org.springframework.integration - org.springframework.integration.adapter - ${release.version} - org.springframework.integration org.springframework.integration.event