blob: ed74d0acc9072ff98dc58669455efa1a9784702d [file] [log] [blame]
Stefano Lenzid8b3e182007-09-09 23:55:25 +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-->
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +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">
Clement Escoffier4ae86972009-04-09 12:09:09 +000021
22 <modelVersion>4.0.0</modelVersion>
23
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000024 <parent>
Clement Escoffier4ae86972009-04-09 12:09:09 +000025
26 <groupId>org.apache.felix</groupId>
27
28 <artifactId>felix</artifactId>
29
30 <version>1.0.4</version>
31
32 <relativePath>../../pom</relativePath>
33
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000034 </parent>
35
Clement Escoffier4ae86972009-04-09 12:09:09 +000036
37 <properties>
Stefano Lenzid8b3e182007-09-09 23:55:25 +000038 <pkgArtifactId>jline</pkgArtifactId>
39 <pkgVersion>0.9.91</pkgVersion>
40 <pomVersion>0001</pomVersion>
41 <osgiVersion>${pkgVersion}</osgiVersion>
42 </properties>
43 <groupId>org.apache.felix.commons</groupId>
44 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
45 <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
46 <packaging>bundle</packaging>
47 <name>${pkgArtifactId} bundle</name>
48 <description>
49 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
50 </description>
51 <organization>
52 <name>Apache Felix Project</name>
53 <url>http://felix.apache.org/</url>
54 </organization>
55 <scm>
56 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-collections</connection>
57 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-collections</developerConnection>
58 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-collections</url>
59 </scm>
60 <dependencies>
61 <dependency>
62 <groupId>jline</groupId>
63 <artifactId>${pkgArtifactId}</artifactId>
64 <version>${pkgVersion}</version>
65 </dependency>
66 </dependencies>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000072 <version>1.4.0</version>
Stefano Lenzid8b3e182007-09-09 23:55:25 +000073 <extensions>true</extensions>
74 <configuration>
75 <instructions>
76 <Bundle-SymbolicName>
77 ${pom.artifactId}
78 </Bundle-SymbolicName>
79 <Export-Package>*;version=${pkgVersion}</Export-Package>
80 <Import-Package>
81 !jline.*
82 </Import-Package>
83 </instructions>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
88</project>