blob: f92340e3261092295d0dcc7e01f7fd7bdb1209ba [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.9.0-incubator-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>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.compendium</artifactId>
</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>0.9.0-incubator-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>