Repository: camel Updated Branches: refs/heads/master 40fa7f865 -> 0e0bc1b23
CAMEL-10186: Fixing a typo in cassandra-unit and IT tests Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c0c4ced2 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c0c4ced2 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c0c4ced2 Branch: refs/heads/master Commit: c0c4ced2c67bed773dde590d5abc9f735e84507e Parents: 2a9cba9 Author: Nicola Ferraro <[email protected]> Authored: Tue Nov 8 13:49:54 2016 +0100 Committer: Nicola Ferraro <[email protected]> Committed: Tue Nov 8 13:50:18 2016 +0100 ---------------------------------------------------------------------- parent/pom.xml | 4 ++-- .../camel-spring-boot-dependencies/pom.xml | 11 +++++++++++ .../camel-spring-boot-generator-bom/pom.xml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c0c4ced2/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index a505d6d..076a8f4 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -3111,8 +3111,8 @@ <version>${cassandra-unit-version}</version> <exclusions> <exclusion> - <artifactId>org.apache.cassandra</artifactId> - <groupId>cassandra-all</groupId> + <groupId>org.apache.cassandra</groupId> + <artifactId>cassandra-all</artifactId> </exclusion> </exclusions> </dependency> http://git-wip-us.apache.org/repos/asf/camel/blob/c0c4ced2/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml ---------------------------------------------------------------------- diff --git a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml index e8bffa9..162434d 100644 --- a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml +++ b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-dependencies/pom.xml @@ -2758,6 +2758,17 @@ <version>3.4.9</version> </dependency> <dependency> + <groupId>org.cassandraunit</groupId> + <artifactId>cassandra-unit</artifactId> + <version>3.0.0.1</version> + <exclusions> + <exclusion> + <groupId>cassandra-all</groupId> + <artifactId>org.apache.cassandra</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>org.ccil.cowan.tagsoup</groupId> <artifactId>tagsoup</artifactId> <version>1.2.1</version> http://git-wip-us.apache.org/repos/asf/camel/blob/c0c4ced2/platforms/spring-boot/spring-boot-dm/camel-spring-boot-generator-bom/pom.xml ---------------------------------------------------------------------- diff --git a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-generator-bom/pom.xml b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-generator-bom/pom.xml index fa78ee5..359b160 100644 --- a/platforms/spring-boot/spring-boot-dm/camel-spring-boot-generator-bom/pom.xml +++ b/platforms/spring-boot/spring-boot-dm/camel-spring-boot-generator-bom/pom.xml @@ -217,7 +217,7 @@ <exclude>org.apache.httpcomponents:httpmime</exclude> <exclude>org.apache.derby:derby</exclude> <exclude>org.apache.logging.log4j:*</exclude> - <exclude>org.cassandraunit:*</exclude> + <exclude>org.codehaus.groovy:*</exclude> <exclude>org.hibernate:hibernate-entitymanager</exclude> <exclude>org.hsqldb:*</exclude>
