blob: feccecbf5b22c6403c41869020d0057451143895 [file] [log] [blame]
Christian van Spaandonk9e4042b2008-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-->
Marcel Offermans4cd54422011-04-27 23:01:14 +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">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
Christian van Spaandonk9e4042b2008-08-04 15:01:29 +000023 <groupId>org.apache.felix</groupId>
Marcel Offermans4cd54422011-04-27 23:01:14 +000024 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
26 <relativePath>../../pom/pom.xml</relativePath>
27 </parent>
28 <properties>
29 <osgi.version>4.2.0</osgi.version>
30 </properties>
31 <packaging>bundle</packaging>
32 <name>Apache Felix AutoConf Resource Processor</name>
33 <version>0.1.0-SNAPSHOT</version>
34 <artifactId>org.apache.felix.deployment.rp.autoconf</artifactId>
35 <dependencies>
36 <dependency>
37 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.core</artifactId>
39 <version>${osgi.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
44 <version>${osgi.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>${pom.groupId}</groupId>
48 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansfee2abb2011-04-30 09:05:51 +000049 <version>3.0.0</version>
Marcel Offermans4cd54422011-04-27 23:01:14 +000050 <scope>provided</scope>
51 </dependency>
52 <dependency>
53 <groupId>${pom.groupId}</groupId>
54 <artifactId>org.apache.felix.deploymentadmin</artifactId>
Marcel Offermans1f630632011-04-30 09:01:51 +000055 <version>0.9.0</version>
Marcel Offermans4cd54422011-04-27 23:01:14 +000056 </dependency>
57 <dependency>
58 <groupId>${pom.groupId}</groupId>
59 <artifactId>org.apache.felix.metatype</artifactId>
Marcel Offermans1f630632011-04-30 09:01:51 +000060 <version>1.0.4</version>
Marcel Offermans4cd54422011-04-27 23:01:14 +000061 </dependency>
62 </dependencies>
63 <build>
Marcel Offermans10c6d602011-04-29 15:02:34 +000064 <resources>
65 <resource>
66 <directory>.</directory>
67 <targetPath>META-INF</targetPath>
68 <includes>
69 <include>LICENSE*</include>
70 <include>NOTICE*</include>
71 <include>DEPENDENCIES*</include>
72 </includes>
73 </resource>
74 </resources>
Marcel Offermans4cd54422011-04-27 23:01:14 +000075 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 <version>2.3.4</version>
80 <extensions>true</extensions>
81 <configuration>
82 <instructions>
83 <Bundle-SymbolicName>org.apache.felix.deployment.rp.autoconf</Bundle-SymbolicName>
84 <Bundle-Activator>org.apache.felix.deployment.rp.autoconf.Activator</Bundle-Activator>
85 <Bundle-Name>Apache Felix AutoConf Resource Processor</Bundle-Name>
86 <Bundle-Description>A customizer bundle that publishes a Resource Processor service that processes configuration resources shipped in a Deployment Package.</Bundle-Description>
87 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
88 <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>
89 <Export-Package>org.osgi.service.deploymentadmin.spi;version="1.0"</Export-Package>
90 <DeploymentPackage-Customizer>true</DeploymentPackage-Customizer>
91 <Deployment-ProvidesResourceProcessor>org.osgi.deployment.rp.autoconf</Deployment-ProvidesResourceProcessor>
92 </instructions>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
Christian van Spaandonk9e4042b2008-08-04 15:01:29 +000097</project>