blob: f5312c7457ba51adde3b513fc7c16b12d2da8bbd [file] [log] [blame]
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +00001<?xml version="1.0" encoding="UTF-8"?>
Carsten Ziegeler3a66ebc2007-07-11 10:46:36 +00002<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000020<project>
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix</artifactId>
25 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000026 <relativePath>../pom/pom.xml</relativePath>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000027 </parent>
28
Felix Meschbergerfdb360f2007-04-11 18:51:16 +000029 <artifactId>org.apache.felix.configadmin</artifactId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000030 <packaging>bundle</packaging>
31
32 <name>Apache Felix Configuration Admin Service</name>
33 <description>
34 Implementation of the OSGi Configuration Admin Service Specification 1.2
35 </description>
36
37 <dependencies>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.osgi.core</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>${pom.groupId}</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
46 </dependencies>
47
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000052 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000053 <version>0.9.0-incubator-SNAPSHOT</version>
54 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <Bundle-Category>osgi</Bundle-Category>
58 <Export-Package>
59 org.apache.felix.cm,
60 org.apache.felix.cm.file,
61 org.osgi.service.cm;version=1.2
62 </Export-Package>
63 <Private-Package>
64 org.apache.felix.cm.*
65 </Private-Package>
66 <Bundle-Activator>
67 org.apache.felix.cm.impl.ConfigurationManager
68 </Bundle-Activator>
69 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74</project>