| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>0.8.0-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <name>OSGi R4 Compendium Bundle</name> |
| <description>OSGi Service Platform Release 4 Compendium Interfaces and Classes.</description> |
| <artifactId>org.osgi.compendium</artifactId> |
| <packaging>bundle</packaging> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>javax.servlet</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.osgi.foundation</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <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> |
| <Import-Package>!org.osgi,*</Import-Package> |
| <Dynamic-ImportPackage>*</Dynamic-ImportPackage> |
| <Bundle-Version>4</Bundle-Version> |
| <Bundle-Vendor>OSGi Alliance</Bundle-Vendor> |
| <Bundle-Copyright>Copyright (c) OSGi Alliance (2000, 2005). All Rights Reserved.</Bundle-Copyright> |
| <Bundle-Category>osgi</Bundle-Category> |
| <Bundle-DocURL>http://www.osgi.org/</Bundle-DocURL> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |