Repository: camel Updated Branches: refs/heads/master 420176383 -> 02a652da3
CAMEL-9725: Polished example a bit. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/975ffb2b Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/975ffb2b Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/975ffb2b Branch: refs/heads/master Commit: 975ffb2bbc6759ab0f974dfe005071b9a27be618 Parents: 4201763 Author: Claus Ibsen <[email protected]> Authored: Sat Mar 19 09:05:05 2016 +0100 Committer: Claus Ibsen <[email protected]> Committed: Sat Mar 19 09:05:05 2016 +0100 ---------------------------------------------------------------------- examples/camel-example-cdi-osgi/README.md | 4 ++-- examples/camel-example-cdi-osgi/pom.xml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/975ffb2b/examples/camel-example-cdi-osgi/README.md ---------------------------------------------------------------------- diff --git a/examples/camel-example-cdi-osgi/README.md b/examples/camel-example-cdi-osgi/README.md index f1c6db6..2046cd4 100644 --- a/examples/camel-example-cdi-osgi/README.md +++ b/examples/camel-example-cdi-osgi/README.md @@ -62,7 +62,7 @@ To run the example, from the command line: ```sh karaf@root()> chooseurl camel 2.17.0 - karaf@root()> chooseurl activemq 5.12.1 + karaf@root()> chooseurl activemq 5.13.2 karaf@root()> features:install activemq-broker-noweb pax-cdi-weld camel-sjms camel-cdi ``` @@ -78,7 +78,7 @@ Alternatively, with the new commands introduced since Karaf 3.x: ```sh karaf@root()> repo-add camel 2.17.0 - karaf@root()> repo-add activemq 5.12.1 + karaf@root()> repo-add activemq 5.13.2 karaf@root()> feature:install activemq-broker-noweb pax-cdi-weld camel-sjms camel-cdi ``` http://git-wip-us.apache.org/repos/asf/camel/blob/975ffb2b/examples/camel-example-cdi-osgi/pom.xml ---------------------------------------------------------------------- diff --git a/examples/camel-example-cdi-osgi/pom.xml b/examples/camel-example-cdi-osgi/pom.xml index ea217cc..e528870 100755 --- a/examples/camel-example-cdi-osgi/pom.xml +++ b/examples/camel-example-cdi-osgi/pom.xml @@ -120,6 +120,7 @@ <groupId>org.ops4j.pax.tinybundles</groupId> <artifactId>tinybundles</artifactId> <version>2.1.1</version> + <scope>test</scope> </dependency> <!-- Karaf & Command Shell --> @@ -140,6 +141,7 @@ <groupId>org.apache.karaf.shell</groupId> <artifactId>org.apache.karaf.shell.core</artifactId> <version>${karaf4-version}</version> + <scope>test</scope> </dependency> <!-- Karaf Camel commands --> @@ -150,8 +152,12 @@ <scope>test</scope> <exclusions> <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> + <groupId>org.apache.karaf.shell</groupId> + <artifactId>org.apache.karaf.shell.console</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.karaf</groupId> + <artifactId>org.apache.karaf.util</artifactId> </exclusion> </exclusions> </dependency> @@ -184,12 +190,6 @@ <classifier>features</classifier> <type>xml</type> <scope>test</scope> - <exclusions> - <exclusion> - <groupId>*</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>org.apache.activemq</groupId>
