blob: 846d0651ce1217b1a3d3e5248de699ec109608aa [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>
Felix Meschberger7dd70932007-09-04 13:06:43 +00007 <version>1.0.0</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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000018 <version>0.9.0-SNAPSHOT</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000019 <dependencies>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.core</artifactId>
Felix Meschberger7dd70932007-09-04 13:06:43 +000023 <version>1.0.0</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000024 </dependency>
25 <dependency>
26 <groupId>${pom.groupId}</groupId>
27 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000028 <version>0.9.0-SNAPSHOT</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000029 </dependency>
30 <dependency>
31 <groupId>net.sf.kxml</groupId>
32 <artifactId>kxml2</artifactId>
33 <version>2.2.2</version>
34 </dependency>
35 </dependencies>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000041 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger7dd70932007-09-04 13:06:43 +000042 <version>1.0.0</version>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000043 <extensions>true</extensions>
44 <configuration>
45 <instructions>
46 <Bundle-Category>osgi</Bundle-Category>
47 <Export-Package>
48 org.apache.felix.metatype,
49 org.osgi.service.metatype; version=1.1
50 </Export-Package>
51 <Private-Package>
52 org.apache.felix.metatype.internal,
53 org.apache.felix.metatype.internal.l10n,
54 org.kxml2.io,
55 org.xmlpull.v1
56 </Private-Package>
57 <Bundle-Activator>
58 org.apache.felix.metatype.internal.Activator
59 </Bundle-Activator>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65</project>