You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/05/20 04:42:33 UTC

[camel] branch master updated (f42540f -> 5aa7b6b)

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

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


    from f42540f  xtokenize language moved to camel-jaxp so need to update maven package tooling
     new 64bb5f2  Polished
     new 5aa7b6b  xtokenize language moved to camel-jaxp so need to update maven package tooling

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/camel-core/pom.xml                            | 51 ++++++++--------------
 .../camel/tools/apt/AnnotationProcessorHelper.java |  1 -
 2 files changed, 19 insertions(+), 33 deletions(-)


[camel] 02/02: xtokenize language moved to camel-jaxp so need to update maven package tooling

Posted by da...@apache.org.
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

commit 5aa7b6b8854743a19b2fd05d130093b6e2ba69ec
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon May 20 06:42:07 2019 +0200

    xtokenize language moved to camel-jaxp so need to update maven package tooling
---
 core/camel-core/pom.xml | 51 ++++++++++++++++++-------------------------------
 1 file changed, 19 insertions(+), 32 deletions(-)

diff --git a/core/camel-core/pom.xml b/core/camel-core/pom.xml
index a809544..8d630cd 100644
--- a/core/camel-core/pom.xml
+++ b/core/camel-core/pom.xml
@@ -46,12 +46,12 @@
 
     <dependencies>
 
+        <!-- camel annotations -->
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>spi-annotations</artifactId>
             <optional>true</optional>
         </dependency>
-
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>meta-annotations</artifactId>
@@ -61,37 +61,31 @@
         <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-util</artifactId>
+            <artifactId>camel-api</artifactId>
         </dependency>
-
-        <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-api</artifactId>
+            <artifactId>camel-base</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-jaxp</artifactId>
         </dependency>
-
-        <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-management-api</artifactId>
         </dependency>
-
-        <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-base</artifactId>
+            <artifactId>camel-support</artifactId>
         </dependency>
-
-        <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-jaxp</artifactId>
+            <artifactId>camel-util</artifactId>
         </dependency>
-
-        <!-- required dependencies by camel-core -->
         <dependency>
             <groupId>org.apache.camel</groupId>
-            <artifactId>camel-support</artifactId>
+            <artifactId>camel-util-json</artifactId>
         </dependency>
 
         <!-- core components -->
@@ -192,13 +186,7 @@
             <artifactId>camel-xslt</artifactId>
         </dependency>
 
-        <!-- required dependencies by camel-core -->
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-util-json</artifactId>
-        </dependency>
-
-        <!-- required dependencies by camel-core -->
+        <!-- required logging api dependency by camel-core -->
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
@@ -268,8 +256,13 @@
             <artifactId>assertj-core</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
+        </dependency>
 
-        <!-- logging -->
+        <!-- logging for testing -->
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-api</artifactId>
@@ -286,12 +279,6 @@
             <scope>test</scope>
         </dependency>
 
-        <dependency>
-            <groupId>org.mockito</groupId>
-            <artifactId>mockito-core</artifactId>
-            <scope>test</scope>
-        </dependency>
-
         <!-- for json tests -->
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
@@ -304,7 +291,7 @@
             <scope>test</scope>
         </dependency>
 
-        <!-- validator -->
+        <!-- validator testing -->
         <dependency>
             <groupId>xml-resolver</groupId>
             <artifactId>xml-resolver</artifactId>
@@ -498,7 +485,7 @@
                         </goals>
                         <phase>prepare-package</phase>
                         <configuration>
-                            <outputDirectory>${basedir}/../../components/camel-jaxp/src/main/schema</outputDirectory>
+                            <outputDirectory>${basedir}/../camel-jaxp/src/main/schema</outputDirectory>
                             <resources>
                                 <resource>
                                     <directory>${basedir}/target/classes/org/apache/camel/model/language</directory>


[camel] 01/02: Polished

Posted by da...@apache.org.
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

commit 64bb5f2e01e2894a51fed8065cde4b32288f87e0
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon May 20 06:36:10 2019 +0200

    Polished
---
 .../main/java/org/apache/camel/tools/apt/AnnotationProcessorHelper.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tooling/apt/src/main/java/org/apache/camel/tools/apt/AnnotationProcessorHelper.java b/tooling/apt/src/main/java/org/apache/camel/tools/apt/AnnotationProcessorHelper.java
index b5cdd57..ea63522 100644
--- a/tooling/apt/src/main/java/org/apache/camel/tools/apt/AnnotationProcessorHelper.java
+++ b/tooling/apt/src/main/java/org/apache/camel/tools/apt/AnnotationProcessorHelper.java
@@ -23,7 +23,6 @@ import java.io.PrintWriter;
 import java.io.StringWriter;
 import java.io.Writer;
 import java.nio.file.Files;
-import java.nio.file.OpenOption;
 import java.nio.file.Paths;
 import java.nio.file.StandardOpenOption;
 import java.util.Collections;