blob: c0e2eb1c0df73681af3ea8200ec435b00875b097 [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>
8 </parent>
9
10 <artifactId>org.apache.felix.metatype</artifactId>
11 <packaging>bundle</packaging>
12
13 <name>Apache Felix Metatype Service</name>
14 <description>
15 Implementation of the OSGi Metatype Service Specification 1.1
16 </description>
17
18 <dependencies>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.osgi.core</artifactId>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.osgi.compendium</artifactId>
26 </dependency>
27 <dependency>
28 <groupId>net.sf.kxml</groupId>
29 <artifactId>kxml2</artifactId>
30 <version>2.2.2</version>
31 </dependency>
32 </dependencies>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000038 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000039 <version>0.9.0-incubator-SNAPSHOT</version>
40 <extensions>true</extensions>
41 <configuration>
42 <instructions>
43 <Bundle-Category>osgi</Bundle-Category>
44 <Export-Package>
45 org.apache.felix.metatype,
46 org.osgi.service.metatype; version=1.1
47 </Export-Package>
48 <Private-Package>
49 org.apache.felix.metatype.internal,
50 org.apache.felix.metatype.internal.l10n,
51 org.kxml2.io,
52 org.xmlpull.v1
53 </Private-Package>
54 <Bundle-Activator>
55 org.apache.felix.metatype.internal.Activator
56 </Bundle-Activator>
57 </instructions>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>