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> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 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 | 56db6d3 | 2007-06-06 09:11:21 +0000 | [diff] [blame] | 18 | <dependency> |
| 19 | <groupId>${pom.groupId}</groupId> |
| 20 | <artifactId>org.osgi.compendium</artifactId> |
| 21 | <version>${pom.version}</version> |
| 22 | <scope>provided</scope> |
| 23 | </dependency> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 24 | </dependencies> |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 28 | <groupId>org.apache.felix</groupId> |
| 29 | <artifactId>maven-bundle-plugin</artifactId> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 30 | <version>${pom.version}</version> |
| 31 | <extensions>true</extensions> |
| 32 | <configuration> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 33 | <instructions> |
| 34 | <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName> |
| 35 | <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name> |
| 36 | <Bundle-Description>A bundle that provides a run-time service dependency manager.</Bundle-Description> |
| 37 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 38 | <Export-Package>org.apache.felix.dependencymanager</Export-Package> |
| 39 | <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package> |
| 40 | </instructions> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 41 | </configuration> |
| 42 | </plugin> |
| 43 | </plugins> |
| 44 | </build> |
| 45 | </project> |