You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2016/06/30 08:56:06 UTC

camel git commit: Excluding some particular components from PrepareCatalogMojo

Repository: camel
Updated Branches:
  refs/heads/master 853feb5da -> a18826714


Excluding some particular components from PrepareCatalogMojo


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a1882671
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a1882671
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a1882671

Branch: refs/heads/master
Commit: a18826714c01fcc4e6e9d2955bd761834bc420ce
Parents: 853feb5
Author: Andrea Cosentino <an...@gmail.com>
Authored: Thu Jun 30 10:55:03 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jun 30 10:55:38 2016 +0200

----------------------------------------------------------------------
 .../org/apache/camel/maven/packaging/PrepareCatalogMojo.java  | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a1882671/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
----------------------------------------------------------------------
diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
index a8989c7..3dccde3 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
@@ -50,8 +50,11 @@ public class PrepareCatalogMojo extends AbstractMojo {
 
     public static final int BUFFER_SIZE = 128 * 1024;
 
-    private static final String[] EXCLUDE_DOC_FILES = {"camel-core-osgi", "camel-core-xml", "camel-http-common", 
-        "camel-jetty", "camel-jetty-common", "camel-linkedin", "camel-olingo2", "camel-salesforce"};
+    private static final String[] EXCLUDE_DOC_FILES = {"camel-core-osgi", "camel-core-xml", "camel-hystrix",
+        "camel-http-common", "camel-jetty", "camel-jetty-common", "camel-jetty8", 
+        "camel-linkedin", "camel-olingo2", "camel-salesforce", "camel-spring-boot-starter",  "camel-spring-dm",
+        "camel-test-karaf", "camel-test-spring", "camel-testng", "camel-test-spring3", "camel-test-spring40", 
+        "camel-zipkin-starter"};
 
     private static final Pattern LABEL_PATTERN = Pattern.compile("\\\"label\\\":\\s\\\"([\\w,]+)\\\"");