Author: rotty3000 Date: Thu Jul 19 16:47:17 2018 New Revision: 1836280 URL: http://svn.apache.org/viewvc?rev=1836280&view=rev Log: [spifly] the framework extension can only work on a framework >= R7
Do this so the imported packages are of the right version Signed-off-by: Raymond Auge <[email protected]> Modified: aries/trunk/spi-fly/spi-fly-dynamic-framework-extension/pom.xml Modified: aries/trunk/spi-fly/spi-fly-dynamic-framework-extension/pom.xml URL: http://svn.apache.org/viewvc/aries/trunk/spi-fly/spi-fly-dynamic-framework-extension/pom.xml?rev=1836280&r1=1836279&r2=1836280&view=diff ============================================================================== --- aries/trunk/spi-fly/spi-fly-dynamic-framework-extension/pom.xml (original) +++ aries/trunk/spi-fly/spi-fly-dynamic-framework-extension/pom.xml Thu Jul 19 16:47:17 2018 @@ -51,6 +51,13 @@ <dependencies> <dependency> + <groupId>org.osgi</groupId> + <artifactId>osgi.core</artifactId> + <version>7.0.0</version> + <scope>provided</scope> + </dependency> + + <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-debug-all</artifactId> <version>5.0.3</version> @@ -64,12 +71,6 @@ <scope>provided</scope> </dependency> - <dependency> - <groupId>org.osgi</groupId> - <artifactId>org.osgi.core</artifactId> - <scope>provided</scope> - </dependency> - <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId>
