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> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 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> |
Marcel Offermans | 6f5348b | 2006-07-03 06:46:32 +0000 | [diff] [blame] | 18 | <!-- |
| 19 | <dependency> |
| 20 | <groupId>junit</groupId> |
| 21 | <artifactId>junit</artifactId> |
| 22 | <version>3.8.2</version> |
| 23 | <scope>test</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.easymock</groupId> |
| 27 | <artifactId>easymock</artifactId> |
| 28 | <version>2.2</version> |
| 29 | <scope>test</scope> |
| 30 | </dependency> |
| 31 | --> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 32 | </dependencies> |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix.plugins</groupId> |
| 37 | <artifactId>maven-osgi-plugin</artifactId> |
| 38 | <version>${pom.version}</version> |
| 39 | <extensions>true</extensions> |
| 40 | <configuration> |
| 41 | <osgiManifest> |
| 42 | <bundleName>Dependency Manager</bundleName> |
| 43 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 44 | <bundleDescription> |
| 45 | A bundle that provides a run-time service dependency manager. |
| 46 | </bundleDescription> |
| 47 | <importPackage> |
| 48 | org.osgi.framework |
| 49 | </importPackage> |
| 50 | <exportPackage> |
| 51 | org.apache.felix.dependencymanager |
| 52 | </exportPackage> |
| 53 | </osgiManifest> |
| 54 | </configuration> |
| 55 | </plugin> |
| 56 | </plugins> |
| 57 | </build> |
| 58 | </project> |