Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
| 9 | <name>Apache Felix Dependency Manager</name> |
| 10 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 9d02237 | 2006-04-03 15:10:12 +0000 | [diff] [blame] | 14 | <artifactId>org.osgi.core</artifactId> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 18 | </dependencies> |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.felix.plugins</groupId> |
| 23 | <artifactId>maven-osgi-plugin</artifactId> |
| 24 | <version>${pom.version}</version> |
| 25 | <extensions>true</extensions> |
| 26 | <configuration> |
| 27 | <osgiManifest> |
| 28 | <bundleName>Dependency Manager</bundleName> |
| 29 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 30 | <bundleDescription> |
| 31 | A bundle that provides a run-time service dependency manager. |
| 32 | </bundleDescription> |
| 33 | <importPackage> |
| 34 | org.osgi.framework |
| 35 | </importPackage> |
| 36 | <exportPackage> |
| 37 | org.apache.felix.dependencymanager |
| 38 | </exportPackage> |
| 39 | </osgiManifest> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | </build> |
| 44 | </project> |