This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch release/1.3.0 in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 0f246b2ed6ae3f95da6abf1ea42eff55ab2aa5dc Author: Peter Palaga <[email protected]> AuthorDate: Fri Oct 16 19:32:19 2020 +0200 HBase integration tests fail with Camel 3.6.0 Fix #1914 --- extensions-jvm/hbase/integration-test/pom.xml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/extensions-jvm/hbase/integration-test/pom.xml b/extensions-jvm/hbase/integration-test/pom.xml index dba36d0..c01c9c2 100644 --- a/extensions-jvm/hbase/integration-test/pom.xml +++ b/extensions-jvm/hbase/integration-test/pom.xml @@ -52,6 +52,11 @@ <artifactId>slf4j-log4j12</artifactId> <version>${slf4j-log4j12.version}</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>20.0</version><!-- The last version that contains com.google.common.util.concurrent.Futures.addCallback(com.google.common.util.concurrent.ListenableFuture, com.google.common.util.concurrent.FutureCallback) required by hbase-test-util --> + </dependency> </dependencies> </dependencyManagement> @@ -89,6 +94,11 @@ <artifactId>hbase-testing-util</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> @@ -96,9 +106,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> </plugin> <plugin> <groupId>io.quarkus</groupId>
