Spring OSGi Extender.
Spring/OSGi extender. Listens for and bootstraps Spring-powered OSGi bundles..
Here is the list of declaration for spring-osgi-extender. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework.osgi</groupId> <artifactId>spring-osgi-extender</artifactId> <version>1.2.0</version> </dependency>
If you think this Maven repository POM file listing for spring-osgi-extender is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the spring-osgi-extender-1.2.0.jar
org.springframework.osgi.extender org.springframework.osgi.extender.event org.springframework.osgi.extender.internal.activator org.springframework.osgi.extender.internal.dependencies.shutdown org.springframework.osgi.extender.internal.dependencies.startup org.springframework.osgi.extender.internal.support org.springframework.osgi.extender.internal.util org.springframework.osgi.extender.internal.util.concurrent org.springframework.osgi.extender.support org.springframework.osgi.extender.support.internal org.springframework.osgi.extender.support.scanning org.springframework.osgi.io.internal org.springframework.osgi.io.internal.resolver
Here is the content of the POM file.
<?xml version="1.0"?> <project> <parent> <artifactId>spring-osgi</artifactId> <groupId>org.springframework.osgi</groupId> <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.osgi</groupId> <artifactId>spring-osgi-extender</artifactId> <packaging>bundle</packaging> <name>Spring OSGi Extender</name> <url>http://www.springframework.org/osgi</url> <description> Spring/OSGi extender. Listens for and bootstraps Spring-powered OSGi bundles. </description> <properties> <javadoc.loc>${basedir}/../docs/src/javadoc</javadoc.loc> <spring.osgi.private.pkg> org.springframework.osgi.extender.*internal*, org.springframework.osgi.io.*internal* </spring.osgi.private.pkg> <!-- careful what you export --> <spring.osgi.export> !org.springframework.osgi.extender.*internal*, !org.springframework.osgi.io.*, org.springframework.osgi.extender*;version=${spring.osgi.export.version} </spring.osgi.export> <spring.osgi.import.pkg> org.osgi.service.packageadmin;version=1.2, org.springframework.osgi.extensions.annotation;resolution:=optional;version=${spring.osgi.import.version} </spring.osgi.import.pkg> <spring.osgi.symbolic.name>${symName.prefix}.extender</spring.osgi.symbolic.name> </properties> <dependencies> <dependency> <groupId>org.springframework.osgi</groupId> <artifactId>spring-osgi-mock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.osgi</groupId> <artifactId>spring-osgi-core</artifactId> </dependency> <dependency> <groupId>org.springframework.osgi</groupId> <artifactId>spring-osgi-io</artifactId> </dependency> <dependency> <groupId>edu.emory.mathcs.backport</groupId> <artifactId>com.springsource.edu.emory.mathcs.backport</artifactId> <version>3.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.aopalliance</groupId> <artifactId>com.springsource.org.aopalliance</artifactId> <scope>test</scope> </dependency> </dependencies> </project>