blob: 73f6dfc82087eaf08bed7155dad846a1e8673f0b [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-->
Marcel Offermans4ce86692011-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 Spaandonkb42978c2008-08-04 15:01:29 +000023 <groupId>org.apache.felix</groupId>
Marcel Offermans4ce86692011-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>
Jan Willem Janssen776e3342013-12-03 15:29:08 +000033 <version>0.1.6-SNAPSHOT</version>
Marcel Offermans4ce86692011-04-27 23:01:14 +000034 <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 Offermansc6e4c552013-05-28 08:21:56 +000049 <version>3.1.0</version>
Marcel Offermans4ce86692011-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 Offermans0486b092013-05-31 13:39:07 +000055 <version>0.9.4</version>
Marcel Offermans4ce86692011-04-27 23:01:14 +000056 </dependency>
57 <dependency>
58 <groupId>${pom.groupId}</groupId>
59 <artifactId>org.apache.felix.metatype</artifactId>
Marcel Offermansc6e4c552013-05-28 08:21:56 +000060 <version>1.0.6</version>
Marcel Offermans4ce86692011-04-27 23:01:14 +000061 </dependency>
62 </dependencies>
63 <build>
Marcel Offermans1c8e4082011-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>
Marcel Offermans6e441fb2011-05-01 10:50:30 +000072 <include>*.txt</include>
Marcel Offermans1c8e4082011-04-29 15:02:34 +000073 </includes>
74 </resource>
75 </resources>
Marcel Offermans4ce86692011-04-27 23:01:14 +000076 <plugins>
77 <plugin>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>maven-bundle-plugin</artifactId>
80 <version>2.3.4</version>
81 <extensions>true</extensions>
82 <configuration>
83 <instructions>
84 <Bundle-SymbolicName>org.apache.felix.deployment.rp.autoconf</Bundle-SymbolicName>
85 <Bundle-Activator>org.apache.felix.deployment.rp.autoconf.Activator</Bundle-Activator>
86 <Bundle-Name>Apache Felix AutoConf Resource Processor</Bundle-Name>
87 <Bundle-Description>A customizer bundle that publishes a Resource Processor service that processes configuration resources shipped in a Deployment Package.</Bundle-Description>
Marcel Offermansc146def2013-05-30 07:58:05 +000088 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermans4ce86692011-04-27 23:01:14 +000089 <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>
Marcel Offermans0486b092013-05-31 13:39:07 +000090 <Import-Package>org.apache.felix.dm,org.osgi.service.deploymentadmin,org.osgi.service.deploymentadmin.spi,org.osgi.service.event,org.osgi.service.log,*</Import-Package>
Marcel Offermans579b0ad2013-11-15 14:05:03 +000091 <Export-Package>org.osgi.service.deploymentadmin.spi;version="1.0",org.osgi.service.metatype;version="1.2"</Export-Package>
Marcel Offermans4ce86692011-04-27 23:01:14 +000092 <DeploymentPackage-Customizer>true</DeploymentPackage-Customizer>
93 <Deployment-ProvidesResourceProcessor>org.osgi.deployment.rp.autoconf</Deployment-ProvidesResourceProcessor>
94 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
Christian van Spaandonkb42978c2008-08-04 15:01:29 +000099</project>