Author: cziegeler
Date: Wed Mar 1 07:02:26 2017
New Revision: 1784859
URL: http://svn.apache.org/viewvc?rev=1784859&view=rev
Log:
Change scope to provided. The core api and compendium api are provided at
runtime through the OSGi framework, therefore provided is more accurate as
compile. And using provided avoids problems with downstream users
Modified:
felix/trunk/utils/pom.xml
Modified: felix/trunk/utils/pom.xml
URL:
http://svn.apache.org/viewvc/felix/trunk/utils/pom.xml?rev=1784859&r1=1784858&r2=1784859&view=diff
==============================================================================
--- felix/trunk/utils/pom.xml (original)
+++ felix/trunk/utils/pom.xml Wed Mar 1 07:02:26 2017
@@ -41,11 +41,13 @@
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.1.0</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.2.0</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
<build>