blob: b3fadca8fc354cae79d19512b34a783ef9cbc326 [file] [log] [blame]
Marcel Offermans516d38d2006-03-25 20:46:19 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +00008 <packaging>bundle</packaging>
Marcel Offermans516d38d2006-03-25 20:46:19 +00009 <name>Apache Felix Dependency Manager</name>
10 <artifactId>org.apache.felix.dependencymanager</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez9d022372006-04-03 15:10:12 +000014 <artifactId>org.osgi.core</artifactId>
Marcel Offermans516d38d2006-03-25 20:46:19 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
Marcel Offermans56db6d32007-06-06 09:11:21 +000018 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
Marcel Offermans516d38d2006-03-25 20:46:19 +000024 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000028 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
Marcel Offermans516d38d2006-03-25 20:46:19 +000030 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000033 <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 Offermans516d38d2006-03-25 20:46:19 +000041 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45</project>