blob: cfdc1155665ebaef96446c1fae25df609d721ecb [file] [log] [blame]
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +00001<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>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +00008 <name>OSGi R4 Compendium Bundle</name>
Richard S. Hall1da4e542006-11-02 21:45:44 +00009 <description>OSGi Service Platform Release 4 Compendium Interfaces and Classes.</description>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000010 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall1da4e542006-11-02 21:45:44 +000011 <packaging>bundle</packaging>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000012 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000015 <artifactId>org.osgi.core</artifactId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000016 <version>${pom.version}</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000017 </dependency>
18 <dependency>
Michael E. Rodriguez8efde692006-04-03 18:33:30 +000019 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000020 <artifactId>javax.servlet</artifactId>
Michael E. Rodriguez8efde692006-04-03 18:33:30 +000021 <version>${pom.version}</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000022 </dependency>
23 <dependency>
Richard S. Hall33b07d12006-10-18 22:02:38 +000024 <groupId>org.apache.felix</groupId>
25 <artifactId>org.osgi.foundation</artifactId>
26 <version>${pom.version}</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000027 </dependency>
28 </dependencies>
29 <build>
30 <plugins>
31 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000032 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000034 <extensions>true</extensions>
35 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000036 <instructions>
37 <Export-Package>!org.osgi.framework,!org.osgi.service.condpermadmin,!org.osgi.service.packageadmin,!org.osgi.service.permissionadmin,!org.osgi.service.startlevel,!org.osgi.service.url,org.osgi.*</Export-Package>
Richard S. Hallf79928c2006-11-03 14:51:54 +000038 <Import-Package>javax.microedition.io;resolution:=optional,!org.osgi.*,*</Import-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000039 <Dynamic-ImportPackage>*</Dynamic-ImportPackage>
40 <Bundle-Version>4</Bundle-Version>
41 <Bundle-Vendor>OSGi Alliance</Bundle-Vendor>
42 <Bundle-Copyright>Copyright (c) OSGi Alliance (2000, 2005). All Rights Reserved.</Bundle-Copyright>
43 <Bundle-Category>osgi</Bundle-Category>
44 <Bundle-DocURL>http://www.osgi.org/</Bundle-DocURL>
45 </instructions>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000046 </configuration>
47 </plugin>
48 </plugins>
49 </build>
Marcel Offermansa99c7d62006-09-02 12:56:13 +000050</project>