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 2017/03/15 15:00:36 UTC

[1/8] camel git commit: CAMEL-10141: make connector examples unit tests pass on Java 9

Repository: camel
Updated Branches:
  refs/heads/master e6131db33 -> c98e63d20


CAMEL-10141: make connector examples unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: c98e63d2032ac8fecd0cea43423af123edab0dab
Parents: 57a2132
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 15:17:10 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 connectors/examples/beverage-component/pom.xml   | 18 ++++++++++++++++++
 connectors/examples/foo-bar-wine-example/pom.xml | 18 ++++++++++++++++++
 2 files changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c98e63d2/connectors/examples/beverage-component/pom.xml
----------------------------------------------------------------------
diff --git a/connectors/examples/beverage-component/pom.xml b/connectors/examples/beverage-component/pom.xml
index d349490..211c12e 100644
--- a/connectors/examples/beverage-component/pom.xml
+++ b/connectors/examples/beverage-component/pom.xml
@@ -91,4 +91,22 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind</argLine>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/camel/blob/c98e63d2/connectors/examples/foo-bar-wine-example/pom.xml
----------------------------------------------------------------------
diff --git a/connectors/examples/foo-bar-wine-example/pom.xml b/connectors/examples/foo-bar-wine-example/pom.xml
index 358d1cc..e0fb146 100644
--- a/connectors/examples/foo-bar-wine-example/pom.xml
+++ b/connectors/examples/foo-bar-wine-example/pom.xml
@@ -103,4 +103,22 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind</argLine>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


[4/8] camel git commit: CAMEL-10141: make camel-soap unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-soap unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: 60036eaa1a1a9025a5cba529bea293f1e323a775
Parents: 1835ad5
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 12:20:57 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-soap/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/60036eaa/components/camel-soap/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-soap/pom.xml b/components/camel-soap/pom.xml
index 89bc3b1..3111b94 100644
--- a/components/camel-soap/pom.xml
+++ b/components/camel-soap/pom.xml
@@ -290,6 +290,14 @@
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <argLine>--add-modules java.xml.bind,java.xml.ws --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+                            <!--https://issues.apache.org/jira/browse/SUREFIRE-1265 -->
+                            <reuseForks>true</reuseForks>
+                        </configuration>
+                    </plugin>
                 </plugins>
             </build>
         </profile>


[6/8] camel git commit: CAMEL-10141: make camel-spring-cloud unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-spring-cloud unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: cf62adadb990ee0766e00975be87b6c7668f7f97
Parents: 60036ea
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 13:14:40 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-spring-cloud/pom.xml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/cf62adad/components/camel-spring-cloud/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-cloud/pom.xml b/components/camel-spring-cloud/pom.xml
index 217d8e1..c57bcff 100644
--- a/components/camel-spring-cloud/pom.xml
+++ b/components/camel-spring-cloud/pom.xml
@@ -125,4 +125,24 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+              <!--https://issues.apache.org/jira/browse/SUREFIRE-1265 -->
+              <reuseForks>true</reuseForks>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


[8/8] camel git commit: CAMEL-10141: make camel-spring-cloud-netflix unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-spring-cloud-netflix unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: cc31fe41dde9f12adafdbb72b6ac43e5f9cb5592
Parents: cf62ada
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 13:17:38 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-spring-cloud-netflix/pom.xml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/cc31fe41/components/camel-spring-cloud-netflix/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring-cloud-netflix/pom.xml b/components/camel-spring-cloud-netflix/pom.xml
index 7dcf92d..a111462 100644
--- a/components/camel-spring-cloud-netflix/pom.xml
+++ b/components/camel-spring-cloud-netflix/pom.xml
@@ -133,4 +133,24 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+              <!--https://issues.apache.org/jira/browse/SUREFIRE-1265 -->
+              <reuseForks>true</reuseForks>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


[7/8] camel git commit: CAMEL-10141: make spring-boot starters unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make spring-boot starters unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: 57a2132bdd9cb7db67e137bc84f2f19d7543291a
Parents: 8c654e0
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 15:00:10 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 platforms/spring-boot/components-starter/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/57a2132b/platforms/spring-boot/components-starter/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/pom.xml b/platforms/spring-boot/components-starter/pom.xml
index 17c9df3..c9ceb03 100644
--- a/platforms/spring-boot/components-starter/pom.xml
+++ b/platforms/spring-boot/components-starter/pom.xml
@@ -308,4 +308,23 @@
     <module>camel-zookeeper-master-starter</module>
     <module>camel-zookeeper-starter</module>
   </modules>
+
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>


[3/8] camel git commit: CAMEL-10141: make camel-mail unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-mail unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: 1835ad52794d9ddcb9f48ae6aa3a1d46c424c42e
Parents: f6cc6a3
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 12:05:12 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-mail/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/1835ad52/components/camel-mail/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-mail/pom.xml b/components/camel-mail/pom.xml
index 419e128..2e45fc6 100644
--- a/components/camel-mail/pom.xml
+++ b/components/camel-mail/pom.xml
@@ -125,4 +125,22 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+        <profile>
+            <id>jdk9-build</id>
+            <activation>
+                <jdk>9</jdk>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <argLine>--add-modules java.activation,java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>


[5/8] camel git commit: CAMEL-10141: make camel-hl7 unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-hl7 unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: f6cc6a3cfdbdf1e4566ea2d79f8a78be2fb4092a
Parents: e6131db
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 10:24:47 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-hl7/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f6cc6a3c/components/camel-hl7/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-hl7/pom.xml b/components/camel-hl7/pom.xml
index 796981e..333be8d 100644
--- a/components/camel-hl7/pom.xml
+++ b/components/camel-hl7/pom.xml
@@ -110,4 +110,22 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+        <profile>
+            <id>jdk9-build</id>
+            <activation>
+                <jdk>9</jdk>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <argLine>--add-modules java.xml.bind</argLine>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>


[2/8] camel git commit: CAMEL-10141: make camel-syslog unit tests pass on Java 9

Posted by da...@apache.org.
CAMEL-10141: make camel-syslog unit tests pass on Java 9


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

Branch: refs/heads/master
Commit: 8c654e023a43bed6a482852d533f6a1cd2f50508
Parents: cc31fe4
Author: jpoth <po...@gmail.com>
Authored: Wed Mar 15 13:21:15 2017 +0100
Committer: jpoth <po...@gmail.com>
Committed: Wed Mar 15 15:30:07 2017 +0100

----------------------------------------------------------------------
 components/camel-syslog/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/8c654e02/components/camel-syslog/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-syslog/pom.xml b/components/camel-syslog/pom.xml
index 23a82cb..b6f5aa9 100644
--- a/components/camel-syslog/pom.xml
+++ b/components/camel-syslog/pom.xml
@@ -83,4 +83,22 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>jdk9-build</id>
+      <activation>
+        <jdk>9</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <argLine>--add-modules java.xml.bind --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>