| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>0.8.0-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>osgi-bundle</packaging> |
| <name>Apache Felix Dependency Manager</name> |
| <artifactId>org.apache.felix.dependencymanager</artifactId> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>${pom.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.2</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>2.2</version> |
| <scope>test</scope> |
| </dependency> |
| --> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix.plugins</groupId> |
| <artifactId>maven-osgi-plugin</artifactId> |
| <version>${pom.version}</version> |
| <extensions>true</extensions> |
| <configuration> |
| <osgiManifest> |
| <bundleName>Dependency Manager</bundleName> |
| <bundleVendor>Apache Software Foundation</bundleVendor> |
| <bundleDescription> |
| A bundle that provides a run-time service dependency manager. |
| </bundleDescription> |
| <importPackage> |
| org.osgi.framework |
| </importPackage> |
| <exportPackage> |
| org.apache.felix.dependencymanager |
| </exportPackage> |
| </osgiManifest> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |