blob: 7116b9c6678361b9eeb1469d92c4a14e33144360 [file] [log] [blame]
Christian van Spaandonkb42978c2008-08-04 15:01:29 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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-->
20<project>
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000024 <version>1.0.4</version>
Christian van Spaandonkb42978c2008-08-04 15:01:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>Apache Felix AutoConf Resource Processor</name>
30 <version>0.1.0-SNAPSHOT</version>
31 <artifactId>org.apache.felix.deployment.rp.autoconf</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf5a813c2008-11-19 18:55:40 +000036 <version>1.0.1</version>
Christian van Spaandonkb42978c2008-08-04 15:01:29 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
42 <version>1.1.0-SNAPSHOT</version>
43 </dependency>
44 <dependency>
45 <groupId>${pom.groupId}</groupId>
46 <artifactId>org.apache.felix.dependencymanager</artifactId>
Alex Karasulu500d1c32009-04-04 02:26:00 +000047 <version>2.0.2-SNAPSHOT</version>
Christian van Spaandonkb42978c2008-08-04 15:01:29 +000048 <scope>provided</scope>
49 </dependency>
50 <dependency>
51 <groupId>${pom.groupId}</groupId>
52 <artifactId>org.apache.felix.deploymentadmin</artifactId>
53 <version>0.9.0-SNAPSHOT</version>
54 </dependency>
55 <dependency>
56 <groupId>${pom.groupId}</groupId>
57 <artifactId>org.apache.felix.metatype</artifactId>
58 <version>1.0.1-SNAPSHOT</version>
59 </dependency>
60 </dependencies>
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>maven-bundle-plugin</artifactId>
66 <version>1.4.0</version>
67 <extensions>true</extensions>
68 <configuration>
69 <instructions>
70 <Bundle-SymbolicName>org.apache.felix.deployment.rp.autoconf</Bundle-SymbolicName>
71 <Bundle-Activator>org.apache.felix.deployment.rp.autoconf.Activator</Bundle-Activator>
72 <Bundle-Name>Apache Felix AutoConf Resource Processor</Bundle-Name>
73 <Bundle-Description>A customizer bundle that publishes a Resource Processor service that processes configuration resources shipped in a Deployment Package.</Bundle-Description>
74 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
75 <Private-Package>org.apache.felix.deployment.rp.autoconf, org.apache.felix.metatype, org.apache.felix.metatype.internal.l10n, org.apache.felix.metatype.internal, org.kxml2.io;-split-package:=merge-first, org.xmlpull.v1;-split-package:=merge-first, org.osgi.service.metatype;-split-package:=merge-first</Private-Package>
76 <Export-Package>org.osgi.service.deploymentadmin.spi;version="1.0"</Export-Package>
77 <DeploymentPackage-Customizer>true</DeploymentPackage-Customizer>
78 </instructions>
79 </configuration>
80 </plugin>
81 </plugins>
82 </build>
83</project>