Hi, I found out that we have a couple of places pull in different level of osgi core or compendium from different sources. For example,
blueprint is using the org.osgi.core 1.4.2 & org.osgi.compendium v1.2 from apache Felix transaction is using org.osgi.core v4.1 and org.osgi.compendium v4.1 from org.osgi application is using org.osgi.core v4.2 from org.osgi jmx is using the org.osgi.core 1.4.2 & org.osgi.compendium v1.2 from apache Felix I'd like to update to the latest version of core and compendium. How about we use the following from the org.osgi which is avail at http://repo1.maven.org/maven2/org/osgi/ to be consistent? <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <version>4.2.0</version> </dependency> Please let me know if you have any objection in the next day or two. Thanks Lin
