diff --git a/pom.xml b/pom.xml
index a989c2a6a0..d9a9b5f4ae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,6 +50,17 @@
+
+ release
+
+
+
+ com.agilejava.docbkx
+ docbkx-maven-plugin
+
+
+
+
@@ -77,7 +88,8 @@
3.0.0.RELEASE
-
+
+
com.agilejava.docbkx
docbkx-maven-plugin
@@ -139,6 +151,9 @@
+
+
+
maven-javadoc-plugin
2.5
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/channel/interceptor/GlobalChannelInterceptorBeanPostProcessor.java b/spring-integration-core/src/main/java/org/springframework/integration/channel/interceptor/GlobalChannelInterceptorBeanPostProcessor.java
index 593726caf8..5e252a5747 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/channel/interceptor/GlobalChannelInterceptorBeanPostProcessor.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/channel/interceptor/GlobalChannelInterceptorBeanPostProcessor.java
@@ -50,10 +50,7 @@ final class GlobalChannelInterceptorBeanPostProcessor implements BeanPostProcess
private final Set positiveOrderInterceptors = new LinkedHashSet();
private final Set negativeOrderInterceptors = new LinkedHashSet();
- /**
- *
- * @param globalInterceptors
- */
+
GlobalChannelInterceptorBeanPostProcessor(List channelInterceptors){
this.channelInterceptors = channelInterceptors;
}
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/config/xml/MessageHistoryParser.java b/spring-integration-core/src/main/java/org/springframework/integration/config/xml/MessageHistoryParser.java
index a5e55ac2f1..36832fce79 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/config/xml/MessageHistoryParser.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/config/xml/MessageHistoryParser.java
@@ -16,8 +16,6 @@
package org.springframework.integration.config.xml;
import org.springframework.beans.factory.BeanDefinitionStoreException;
-import org.springframework.beans.factory.parsing.BeanDefinitionParsingException;
-import org.springframework.beans.factory.parsing.Problem;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionReaderUtils;
import org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser;
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/config/xml/PointToPointChannelParser.java b/spring-integration-core/src/main/java/org/springframework/integration/config/xml/PointToPointChannelParser.java
index 600ee400e6..5385da3851 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/config/xml/PointToPointChannelParser.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/config/xml/PointToPointChannelParser.java
@@ -19,7 +19,6 @@ package org.springframework.integration.config.xml;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
-import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.beans.factory.xml.ParserContext;
import org.springframework.util.StringUtils;
import org.springframework.util.xml.DomUtils;
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistory.java b/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistory.java
index 4243255267..28e7919719 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistory.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistory.java
@@ -22,9 +22,7 @@ import java.util.Iterator;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
-import org.springframework.beans.factory.BeanFactory;
import org.springframework.integration.context.NamedComponent;
-import org.springframework.integration.core.Message;
import org.springframework.util.StringUtils;
/**
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistoryAwareMessageHandler.java b/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistoryAwareMessageHandler.java
index 6c6a49408f..88c0c392d1 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistoryAwareMessageHandler.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/history/MessageHistoryAwareMessageHandler.java
@@ -26,7 +26,7 @@ import org.springframework.integration.message.MessageRejectedException;
/**
* Wrapper class to be used when a particular MessageHandler needs to be tracked in MessageHistory.
* Note, any MessageHandler that is wrapped by this class will be tracked in MessageHistory
- * only when MessageHistoryWriter is present.Ê
+ * only when MessageHistoryWriter is present.�
*
* @author Oleg Zhurakousky
* @since 2.0
@@ -40,7 +40,6 @@ public class MessageHistoryAwareMessageHandler implements NamedComponent, Messag
*
* @param historyWriter
* @param endpointName
- * @param parentHandler
*/
public MessageHistoryAwareMessageHandler(MessageHistoryWriter historyWriter, String endpointName, MessageHandler targetHandler){
this.historyWriter = historyWriter;
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/router/RecipientListRouter.java b/spring-integration-core/src/main/java/org/springframework/integration/router/RecipientListRouter.java
index aaad585c16..a8be741e53 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/router/RecipientListRouter.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/router/RecipientListRouter.java
@@ -19,8 +19,6 @@ package org.springframework.integration.router;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
-import java.util.Map;
-
import org.springframework.beans.factory.InitializingBean;
import org.springframework.integration.core.Message;
import org.springframework.integration.core.MessageChannel;
@@ -38,9 +36,8 @@ import org.springframework.util.Assert;
* A Message Router that sends Messages to a list of recipient channels. The
* recipients can be provided as a static list of {@link MessageChannel}
* instances via the {@link #setChannels(List)} method, or for dynamic
- * behavior, a map with {@link MessageSelector} instances as the keys and
- * collections of channels as the values can be provided via the
- * {@link #setChannelMap(Map)} method.
+ * behavior, the values can be provided via the
+ * {@link #setRecipients(List)} method.
*
* For more advanced, programmatic control
* of dynamic recipient lists, consider using the @Router annotation or
diff --git a/spring-integration-core/src/main/java/org/springframework/integration/transformer/CycleDetector.java b/spring-integration-core/src/main/java/org/springframework/integration/transformer/CycleDetector.java
index 0e993bfe8a..346bced406 100644
--- a/spring-integration-core/src/main/java/org/springframework/integration/transformer/CycleDetector.java
+++ b/spring-integration-core/src/main/java/org/springframework/integration/transformer/CycleDetector.java
@@ -52,7 +52,6 @@ class CycleDetector {
*
* @param target
* @param ignorePakages
- * @return
*/
public void detectCycle(Object target, String... ignorePakages){
Map