Stefano Lenzi | 0e4981c | 2008-03-12 18:20:53 +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 | --> |
| 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> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 25 | <version>1.0.4</version> |
Stefano Lenzi | 0e4981c | 2008-03-12 18:20:53 +0000 | [diff] [blame] | 26 | <relativePath>../../pom</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <properties> |
| 30 | <pkgArtifactId>backport-util-concurrent</pkgArtifactId> |
| 31 | <pkgVersion>3.0</pkgVersion> |
| 32 | <pomVersion>0001</pomVersion> |
| 33 | <osgiVersion>${pkgVersion}.0</osgiVersion> |
| 34 | </properties> |
| 35 | |
| 36 | <groupId>org.apache.felix.commons</groupId> |
| 37 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId> |
| 38 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version> |
| 39 | <packaging>bundle</packaging> |
| 40 | <name>${pkgArtifactId} bundle</name> |
| 41 | <description> |
| 42 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar. |
| 43 | </description> |
| 44 | <organization> |
| 45 | <name>Apache Felix Project</name> |
| 46 | <url>http://felix.apache.org</url> |
| 47 | </organization> |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>backport-util-concurrent</groupId> |
| 51 | <artifactId>${pkgArtifactId}</artifactId> |
| 52 | <version>${pkgVersion}</version> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix</groupId> |
| 59 | <artifactId>maven-bundle-plugin</artifactId> |
| 60 | <extensions>true</extensions> |
| 61 | <configuration> |
| 62 | <instructions> |
| 63 | <Bundle-SymbolicName> |
| 64 | ${pom.artifactId} |
| 65 | </Bundle-SymbolicName> |
| 66 | <Export-Package> |
| 67 | *;version=${pkgVersion} |
| 68 | </Export-Package> |
| 69 | </instructions> |
| 70 | </configuration> |
| 71 | </plugin> |
| 72 | </plugins> |
| 73 | </build> |
| 74 | </project> |