add and fix scopes
Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/44caba77 Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/44caba77 Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/44caba77 Branch: refs/heads/master Commit: 44caba77050f11b434753b9acb47c13752c13987 Parents: 633f1ed Author: Oliver Lietz <[email protected]> Authored: Tue Mar 6 00:15:47 2018 +0100 Committer: Serge Huber <[email protected]> Committed: Tue Mar 6 15:55:13 2018 +0100 ---------------------------------------------------------------------- itests/pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/44caba77/itests/pom.xml ---------------------------------------------------------------------- diff --git a/itests/pom.xml b/itests/pom.xml index 1e5b8f5..9da0e7b 100644 --- a/itests/pom.xml +++ b/itests/pom.xml @@ -34,6 +34,7 @@ <classifier>features</classifier> <version>${project.version}</version> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.unomi</groupId> @@ -41,6 +42,7 @@ <classifier>features</classifier> <version>${project.version}</version> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.unomi</groupId> @@ -60,24 +62,28 @@ <artifactId>standard</artifactId> <classifier>features</classifier> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.karaf.cellar</groupId> <artifactId>apache-karaf-cellar</artifactId> <classifier>features</classifier> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-features</artifactId> <classifier>features</classifier> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.apache.cxf.karaf</groupId> <artifactId>apache-cxf</artifactId> <classifier>features</classifier> <type>xml</type> + <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> @@ -118,11 +124,12 @@ <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> - <scope>test</scope> + <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId>
