Stefano Lenzi | d8b3e18 | 2007-09-09 23:55:25 +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.commons</groupId>
|
| 24 | <artifactId>commons-build</artifactId>
|
| 25 | <version>1.0.1-SNAPSHOT</version>
|
| 26 | <relativePath>../pom</relativePath>
|
| 27 | </parent>
|
| 28 | <properties>
|
| 29 | <pkgArtifactId>jline</pkgArtifactId>
|
| 30 | <pkgVersion>0.9.91</pkgVersion>
|
| 31 | <pomVersion>0001</pomVersion>
|
| 32 | <osgiVersion>${pkgVersion}</osgiVersion>
|
| 33 | </properties>
|
| 34 | <groupId>org.apache.felix.commons</groupId>
|
| 35 | <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
|
| 36 | <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
|
| 37 | <packaging>bundle</packaging>
|
| 38 | <name>${pkgArtifactId} bundle</name>
|
| 39 | <description>
|
| 40 | This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
|
| 41 | </description>
|
| 42 | <organization>
|
| 43 | <name>Apache Felix Project</name>
|
| 44 | <url>http://felix.apache.org/</url>
|
| 45 | </organization>
|
| 46 | <scm>
|
| 47 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-collections</connection>
|
| 48 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-collections</developerConnection>
|
| 49 | <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-collections</url>
|
| 50 | </scm>
|
| 51 | <dependencies>
|
| 52 | <dependency>
|
| 53 | <groupId>jline</groupId>
|
| 54 | <artifactId>${pkgArtifactId}</artifactId>
|
| 55 | <version>${pkgVersion}</version>
|
| 56 | </dependency>
|
| 57 | </dependencies>
|
| 58 | <build>
|
| 59 | <plugins>
|
| 60 | <plugin>
|
| 61 | <groupId>org.apache.felix</groupId>
|
| 62 | <artifactId>maven-bundle-plugin</artifactId>
|
| 63 | <extensions>true</extensions>
|
| 64 | <configuration>
|
| 65 | <instructions>
|
| 66 | <Bundle-SymbolicName>
|
| 67 | ${pom.artifactId}
|
| 68 | </Bundle-SymbolicName>
|
| 69 | <Export-Package>*;version=${pkgVersion}</Export-Package>
|
| 70 | <Import-Package>
|
| 71 | !jline.*
|
| 72 | </Import-Package>
|
| 73 | </instructions>
|
| 74 | </configuration>
|
| 75 | </plugin>
|
| 76 | </plugins>
|
| 77 | </build>
|
| 78 | </project> |