| <?xml version="1.0" encoding="UTF-8"?> |
| <project> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <relativePath>../pom/pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>org.apache.felix.metatype</artifactId> |
| <packaging>bundle</packaging> |
| |
| <name>Apache Felix Metatype Service</name> |
| <description> |
| Implementation of the OSGi Metatype Service Specification 1.1 |
| </description> |
| <version>0.9.0-SNAPSHOT</version> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.compendium</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.kxml</groupId> |
| <artifactId>kxml2</artifactId> |
| <version>2.2.2</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-Category>osgi</Bundle-Category> |
| <Export-Package> |
| org.apache.felix.metatype, |
| org.osgi.service.metatype; version=1.1 |
| </Export-Package> |
| <Private-Package> |
| org.apache.felix.metatype.internal, |
| org.apache.felix.metatype.internal.l10n, |
| org.kxml2.io, |
| org.xmlpull.v1 |
| </Private-Package> |
| <Bundle-Activator> |
| org.apache.felix.metatype.internal.Activator |
| </Bundle-Activator> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |