Exclude feature dependencies to avoid having all the spring deps at compile time
Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/88913536 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/88913536 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/88913536 Branch: refs/heads/master Commit: 8891353648da9939bde9a282462343c8d74d1168 Parents: f40ba93 Author: Christian Schneider <[email protected]> Authored: Thu May 18 18:02:13 2017 +0200 Committer: Christian Schneider <[email protected]> Committed: Thu May 18 18:02:13 2017 +0200 ---------------------------------------------------------------------- itests/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/88913536/itests/pom.xml ---------------------------------------------------------------------- diff --git a/itests/pom.xml b/itests/pom.xml index d624d2c..60d5444 100644 --- a/itests/pom.xml +++ b/itests/pom.xml @@ -73,6 +73,12 @@ <version>5.14.4</version> <type>xml</type> <classifier>features</classifier> + <exclusions> + <exclusion> + <artifactId>*</artifactId> + <groupId>*</groupId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -182,6 +188,12 @@ <version>${jetty.version}</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-jdk14</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build>
