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> |
asf-sync-process | 9f9a132 | 2015-11-24 11:06:57 +0000 | [diff] [blame] | 25 | <version>3</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 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 | 17c5ec8 | 2016-01-16 14:50:45 +0000 | [diff] [blame] | 33 | <version>0.1.10-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> |
Jan Willem Janssen | 534002b | 2016-01-15 15:26:30 +0000 | [diff] [blame] | 47 | <groupId>org.apache.felix</groupId> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 48 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
asf-sync-process | 9f9a132 | 2015-11-24 11:06:57 +0000 | [diff] [blame] | 49 | <version>4.1.1</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 50 | </dependency> |
| 51 | <dependency> |
Jan Willem Janssen | 534002b | 2016-01-15 15:26:30 +0000 | [diff] [blame] | 52 | <groupId>org.apache.felix</groupId> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 53 | <artifactId>org.apache.felix.deploymentadmin</artifactId> |
asf-sync-process | 9f9a132 | 2015-11-24 11:06:57 +0000 | [diff] [blame] | 54 | <version>0.9.6</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 55 | </dependency> |
| 56 | <dependency> |
Jan Willem Janssen | 534002b | 2016-01-15 15:26:30 +0000 | [diff] [blame] | 57 | <groupId>org.apache.felix</groupId> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 58 | <artifactId>org.apache.felix.metatype</artifactId> |
asf-sync-process | 9f9a132 | 2015-11-24 11:06:57 +0000 | [diff] [blame] | 59 | <version>1.1.2</version> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 60 | </dependency> |
| 61 | </dependencies> |
| 62 | <build> |
Marcel Offermans | 1c8e408 | 2011-04-29 15:02:34 +0000 | [diff] [blame] | 63 | <resources> |
| 64 | <resource> |
| 65 | <directory>.</directory> |
| 66 | <targetPath>META-INF</targetPath> |
| 67 | <includes> |
| 68 | <include>LICENSE*</include> |
| 69 | <include>NOTICE*</include> |
| 70 | <include>DEPENDENCIES*</include> |
Marcel Offermans | 6e441fb | 2011-05-01 10:50:30 +0000 | [diff] [blame] | 71 | <include>*.txt</include> |
Marcel Offermans | 1c8e408 | 2011-04-29 15:02:34 +0000 | [diff] [blame] | 72 | </includes> |
| 73 | </resource> |
| 74 | </resources> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 75 | <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> |
Marcel Offermans | c146def | 2013-05-30 07:58:05 +0000 | [diff] [blame] | 87 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Jan Willem Janssen | dfaa3cc | 2016-01-15 13:34:41 +0000 | [diff] [blame] | 88 | <Private-Package> |
| 89 | org.apache.felix.deployment.rp.autoconf, |
| 90 | org.apache.felix.metatype, |
| 91 | org.apache.felix.metatype.internal.l10n, |
| 92 | org.apache.felix.metatype.internal, |
| 93 | org.kxml2.io; -split-package:=merge-first, |
| 94 | org.xmlpull.v1; -split-package:=merge-first, |
| 95 | org.osgi.service.metatype; -split-package:=merge-first |
| 96 | </Private-Package> |
| 97 | <Export-Package> |
| 98 | org.osgi.service.deploymentadmin.spi; -split-package:=merge-last;version="1.0", |
| 99 | org.osgi.service.metatype; -split-package:=merge-last;version="1.2" |
| 100 | </Export-Package> |
Marcel Offermans | 4ce8669 | 2011-04-27 23:01:14 +0000 | [diff] [blame] | 101 | <DeploymentPackage-Customizer>true</DeploymentPackage-Customizer> |
| 102 | <Deployment-ProvidesResourceProcessor>org.osgi.deployment.rp.autoconf</Deployment-ProvidesResourceProcessor> |
| 103 | </instructions> |
| 104 | </configuration> |
| 105 | </plugin> |
| 106 | </plugins> |
| 107 | </build> |
Jan Willem Janssen | 534002b | 2016-01-15 15:26:30 +0000 | [diff] [blame] | 108 | <scm> |
Jan Willem Janssen | 17c5ec8 | 2016-01-16 14:50:45 +0000 | [diff] [blame] | 109 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/deploymentadmin/autoconf</connection> |
| 110 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/deploymentadmin/autoconf</developerConnection> |
| 111 | <url>http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/autoconf</url> |
Jan Willem Janssen | 534002b | 2016-01-15 15:26:30 +0000 | [diff] [blame] | 112 | </scm> |
Christian van Spaandonk | b42978c | 2008-08-04 15:01:29 +0000 | [diff] [blame] | 113 | </project> |