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 2018/12/13 13:39:49 UTC

[camel] branch sandbox/camel-3.x updated (ea20f1a -> b7d1d2c)

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

acosentino pushed a change to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from ea20f1a  Upgrade JackRabbit to version 2.19.0
     new e71efc5  Added a proper exception wrap to retain original cause in sprinboot itests see CAMEL-12993
     new b7d1d2c  Upgrade Brave Zipkin to version 5.6.0

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:
 parent/pom.xml                                                          | 2 +-
 .../java/org/apache/camel/itest/springboot/util/ArquillianPackager.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel] 02/02: Upgrade Brave Zipkin to version 5.6.0

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b7d1d2c0c5b756971456182e022c33701731339d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Dec 13 14:10:26 2018 +0100

    Upgrade Brave Zipkin to version 5.6.0
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 60f61e2..34c7488 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -98,7 +98,7 @@
     <boxjavalibv2.version>3.2.1</boxjavalibv2.version>
     <box-java-sdk-version>2.10.0</box-java-sdk-version>
     <braintree-gateway-version>2.89.0</braintree-gateway-version>
-    <brave-zipkin-version>5.5.2</brave-zipkin-version>
+    <brave-zipkin-version>5.6.0</brave-zipkin-version>
     <build-helper-maven-plugin-version>1.12</build-helper-maven-plugin-version>
     <c3p0-version>0.9.5.2</c3p0-version>
     <c3p0-bundle-version>0.9.5.2_2</c3p0-bundle-version>


[camel] 01/02: Added a proper exception wrap to retain original cause in sprinboot itests see CAMEL-12993

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e71efc546af367ac0c41bd4d770976e7be29e757
Author: Andrea Tarocchi <at...@redhat.com>
AuthorDate: Thu Dec 13 12:21:26 2018 +0100

    Added a proper exception wrap to retain original cause in sprinboot itests see CAMEL-12993
---
 .../java/org/apache/camel/itest/springboot/util/ArquillianPackager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
index 3cf3aae..2e189ef 100644
--- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
+++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/util/ArquillianPackager.java
@@ -461,7 +461,7 @@ public final class ArquillianPackager {
             }
 
             if (FAIL_ON_TEST_LIBRARY_MISMATCH) {
-                throw new RuntimeException(message.toString());
+                throw new InvocationException(new RuntimeException(message.toString()));
             } else {
                 debug(message.toString());
             }