blob: 9741f69cbb339353724cbad6b9453b2caa19f880 [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-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000025 <version>1.0.4</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 Meschbergere99d7ed2009-01-28 15:19:08 +000030 <version>1.0.11-SNAPSHOT</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000031 <packaging>bundle</packaging>
32
33 <name>Apache Felix Configuration Admin Service</name>
34 <description>
35 Implementation of the OSGi Configuration Admin Service Specification 1.2
36 </description>
37
38 <dependencies>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.osgi.core</artifactId>
Felix Meschberger0833dc02007-08-06 08:59:33 +000042 <version>1.0.0</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000043 </dependency>
44 <dependency>
45 <groupId>${pom.groupId}</groupId>
46 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000047 <version>1.0.0</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000048 </dependency>
49 </dependencies>
50
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000055 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000056 <version>1.4.0</version>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000057 <extensions>true</extensions>
58 <configuration>
59 <instructions>
60 <Bundle-Category>osgi</Bundle-Category>
Felix Meschberger1af21822007-09-04 13:35:05 +000061 <Bundle-SymbolicName>
62 ${artifactId}
63 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000064 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000065 <Export-Package>
Felix Meschberger432e3872008-03-07 14:58:57 +000066 org.apache.felix.cm;
67 org.apache.felix.cm.file;version=1.0,
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000068 org.osgi.service.cm;version=1.2
69 </Export-Package>
70 <Private-Package>
Felix Meschbergeree867402008-06-13 08:33:54 +000071 org.apache.felix.cm.impl,
72 org.osgi.util.tracker
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000073 </Private-Package>
74 <Bundle-Activator>
75 org.apache.felix.cm.impl.ConfigurationManager
76 </Bundle-Activator>
Felix Meschberger85b355d2007-08-31 07:17:38 +000077 <DynamicImport-Package>
78 org.osgi.service.log
79 </DynamicImport-Package>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000080 </instructions>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
Felix Meschbergeradd2b4a2007-04-11 18:12:33 +000085</project>