This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 318840e  CAMEL-12598: Polished
318840e is described below

commit 318840e15d466c66598776ed156562760b165e40
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Tue Sep 4 09:54:20 2018 +0200

    CAMEL-12598: Polished
---
 tooling/maven/camel-maven-plugin/src/main/docs/camel-maven-plugin.adoc  | 1 +
 .../src/main/java/org/apache/camel/maven/ValidateMojo.java              | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/tooling/maven/camel-maven-plugin/src/main/docs/camel-maven-plugin.adoc 
b/tooling/maven/camel-maven-plugin/src/main/docs/camel-maven-plugin.adoc
index 8b912a5..66dd1ed 100644
--- a/tooling/maven/camel-maven-plugin/src/main/docs/camel-maven-plugin.adoc
+++ b/tooling/maven/camel-maven-plugin/src/main/docs/camel-maven-plugin.adoc
@@ -279,6 +279,7 @@ The maven plugin *validate* goal supports the following 
options which can be con
 | ignoreLenientProperties | true | Whether to ignore components that uses 
lenient properties. When this is true, then the uri validation is stricter but 
would fail on properties that are not part of the component but in the uri 
because of using lenient properties. For example using the HTTP components to 
provide query parameters in the endpoint uri.
 | ignoreDeprecated | true | *Camel 2.23* Whether to ignore deprecated options 
being used in the endpoint uri.
 | duplicateRouteId | true | *Camel 2.20* Whether to validate for duplicate 
route ids. Route ids should be unique and if there are duplicates then Camel 
will fail to startup.
+| directOrSedaPairCheck | true | *Camel 2.23* Whether to validate direct/seda 
endpoints sending to non existing consumers.
 | showAll | false | Whether to show all endpoints and simple expressions (both 
invalid and valid).
 |===
 
diff --git 
a/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
 
b/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
index 35782a9..96081d5 100644
--- 
a/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
+++ 
b/tooling/maven/camel-maven-plugin/src/main/java/org/apache/camel/maven/ValidateMojo.java
@@ -23,7 +23,6 @@ import java.util.ArrayList;
 import java.util.LinkedHashSet;
 import java.util.List;
 import java.util.Set;
-import java.util.concurrent.atomic.AtomicInteger;
 import java.util.stream.Collectors;
 
 import org.apache.camel.catalog.CamelCatalog;
@@ -38,7 +37,6 @@ import org.apache.camel.parser.XmlRouteParser;
 import org.apache.camel.parser.model.CamelEndpointDetails;
 import org.apache.camel.parser.model.CamelRouteDetails;
 import org.apache.camel.parser.model.CamelSimpleExpressionDetails;
-import org.apache.camel.util.ObjectHelper;
 import org.apache.camel.util.StringHelper;
 import org.apache.maven.model.Dependency;
 import org.apache.maven.model.Resource;

Reply via email to