blob: 5fe24371d63b1ff39fdab315035535cc7b254c88 [file] [log] [blame]
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +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
Felix Meschbergerfdb360f2007-04-11 18:51:16 +000010 <artifactId>org.apache.felix.configadmin</artifactId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000011 <packaging>bundle</packaging>
12
13 <name>Apache Felix Configuration Admin Service</name>
14 <description>
15 Implementation of the OSGi Configuration Admin Service Specification 1.2
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 </dependencies>
28
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000033 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000034 <version>0.9.0-incubator-SNAPSHOT</version>
35 <extensions>true</extensions>
36 <configuration>
37 <instructions>
38 <Bundle-Category>osgi</Bundle-Category>
39 <Export-Package>
40 org.apache.felix.cm,
41 org.apache.felix.cm.file,
42 org.osgi.service.cm;version=1.2
43 </Export-Package>
44 <Private-Package>
45 org.apache.felix.cm.*
46 </Private-Package>
47 <Bundle-Activator>
48 org.apache.felix.cm.impl.ConfigurationManager
49 </Bundle-Activator>
50 </instructions>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
55</project>