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 68f63fa7fe7fa71cdcf5e2ff0ce1b01db40fe32b Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Feb 4 20:19:12 2020 +0100 Make tiny example more tiny --- examples/camel-example-main-tiny/pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/examples/camel-example-main-tiny/pom.xml b/examples/camel-example-main-tiny/pom.xml index 212214c..82172fb 100644 --- a/examples/camel-example-main-tiny/pom.xml +++ b/examples/camel-example-main-tiny/pom.xml @@ -44,7 +44,7 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-core-engine</artifactId> <exclusions> - <!-- we dont need LRUCache, and json util --> + <!-- we dont need LRUCache, and utils --> <exclusion> <groupId>org.apache.camel</groupId> <artifactId>camel-caffeine-lrucache</artifactId> @@ -53,6 +53,14 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-util-json</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>camel-tooling-mode</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>camel-tooling-util</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -80,6 +88,18 @@ <artifactId>camel-timer</artifactId> </dependency> + <!-- we dont need JAXB which at this moment can only be turned off like this in camel source project --> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + <scope>test</scope> + </dependency> + <!-- logging --> <dependency> <groupId>org.apache.logging.log4j</groupId>