blob: f92340e3261092295d0dcc7e01f7fd7bdb1209ba [file] [log] [blame]
Felix Meschbergercb7c1e72007-04-11 18:27:12 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project>
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.apache.felix</groupId>
6 <artifactId>felix</artifactId>
7 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00008 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +00009 </parent>
10
11 <artifactId>org.apache.felix.metatype</artifactId>
12 <packaging>bundle</packaging>
13
14 <name>Apache Felix Metatype Service</name>
15 <description>
16 Implementation of the OSGi Metatype Service Specification 1.1
17 </description>
18
19 <dependencies>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.core</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.osgi.compendium</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>net.sf.kxml</groupId>
30 <artifactId>kxml2</artifactId>
31 <version>2.2.2</version>
32 </dependency>
33 </dependencies>
34
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000039 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000040 <version>0.9.0-incubator-SNAPSHOT</version>
41 <extensions>true</extensions>
42 <configuration>
43 <instructions>
44 <Bundle-Category>osgi</Bundle-Category>
45 <Export-Package>
46 org.apache.felix.metatype,
47 org.osgi.service.metatype; version=1.1
48 </Export-Package>
49 <Private-Package>
50 org.apache.felix.metatype.internal,
51 org.apache.felix.metatype.internal.l10n,
52 org.kxml2.io,
53 org.xmlpull.v1
54 </Private-Package>
55 <Bundle-Activator>
56 org.apache.felix.metatype.internal.Activator
57 </Bundle-Activator>
58 </instructions>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63</project>