Christian van Spaandonk | b42978c | 2008-08-04 15:01:29 +0000 | [diff] [blame] | 1 | <?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 Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 20 | <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 Spaandonk | b42978c | 2008-08-04 15:01:29 +0000 | [diff] [blame] | 23 | <groupId>org.apache.felix</groupId> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 24 | <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 Janssen | 776e334 | 2013-12-03 15:29:08 +0000 | [diff] [blame] | 33 | <version>0.1.6-SNAPSHOT</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 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 Offermans | c6e4c55 | 2013-05-28 08:21:56 +0000 | [diff] [blame] | 49 | <version>3.1.0</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>${pom.groupId}</groupId> |
| 54 | <artifactId>org.apache.felix.deploymentadmin</artifactId> |
Marcel Offermans | 0486b09 | 2013-05-31 13:39:07 +0000 | [diff] [blame] | 55 | <version>0.9.4</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>${pom.groupId}</groupId> |
| 59 | <artifactId>org.apache.felix.metatype</artifactId> |
Marcel Offermans | c6e4c55 | 2013-05-28 08:21:56 +0000 | [diff] [blame] | 60 | <version>1.0.6</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 61 | </dependency> |
| 62 | </dependencies> |
| 63 | <build> |
Marcel Offermans | 1c8e408 | 2011-04-29 15:02:34 +0000 | [diff] [blame] | 64 | <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 Offermans | 6e441fb | 2011-05-01 10:50:30 +0000 | [diff] [blame] | 72 | <include>*.txt</include> |
Marcel Offermans | 1c8e408 | 2011-04-29 15:02:34 +0000 | [diff] [blame] | 73 | </includes> |
| 74 | </resource> |
| 75 | </resources> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 76 | <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 Offermans | c146def | 2013-05-30 07:58:05 +0000 | [diff] [blame] | 88 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 89 | <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 Offermans | 0486b09 | 2013-05-31 13:39:07 +0000 | [diff] [blame] | 90 | <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 Offermans | 579b0ad | 2013-11-15 14:05:03 +0000 | [diff] [blame] | 91 | <Export-Package>org.osgi.service.deploymentadmin.spi;version="1.0",org.osgi.service.metatype;version="1.2"</Export-Package> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 92 | <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 Spaandonk | b42978c | 2008-08-04 15:01:29 +0000 | [diff] [blame] | 99 | </project> |