blob: 26beeee74a3ca742f6acd76f25402428ad8a3976 [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>
Felix Meschberger8044a302007-09-04 13:32:05 +000047 <Bundle-SymbolicName>
48 ${artifactId}
49 </Bundle-SymbolicName>
Felix Meschbergercb7c1e72007-04-11 18:27:12 +000050 <Export-Package>
51 org.apache.felix.metatype,
52 org.osgi.service.metatype; version=1.1
53 </Export-Package>
54 <Private-Package>
55 org.apache.felix.metatype.internal,
56 org.apache.felix.metatype.internal.l10n,
57 org.kxml2.io,
58 org.xmlpull.v1
59 </Private-Package>
60 <Bundle-Activator>
61 org.apache.felix.metatype.internal.Activator
62 </Bundle-Activator>
63 </instructions>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68</project>