blob: a61c9b2399ed37c6e1ffe61ab0a13b9b7a96d655 [file] [log] [blame]
Carsten Ziegeler60c73ed2007-08-22 07:03:12 +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 Ziegeler051927a2007-08-24 09:15:34 +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">
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000021 <modelVersion>4.0.0</modelVersion>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000022 <parent>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000023 <groupId>org.apache.felix</groupId>
24 <artifactId>felix</artifactId>
25 <version>1.0.2</version>
26 <relativePath>../../pom</relativePath>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000027 </parent>
Carsten Ziegelerd524f6f2008-01-16 07:28:57 +000028
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000029 <properties>
30 <pkgArtifactId>commons-io</pkgArtifactId>
Carsten Ziegelered37a882007-07-04 17:08:28 +000031 <pkgVersion>1.3.2</pkgVersion>
Carsten Ziegelerb446d432007-08-22 07:17:42 +000032 <pomVersion>0002</pomVersion>
Carsten Ziegelerf66bc732007-07-05 06:20:13 +000033 <osgiVersion>${pkgVersion}</osgiVersion>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000034 </properties>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000035 <groupId>org.apache.felix.commons</groupId>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000036 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegeler60c73ed2007-08-22 07:03:12 +000037 <version>${osgiVersion}-${pomVersion}-SNAPSHOT</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000038 <packaging>bundle</packaging>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000039 <name>${pkgArtifactId} bundle</name>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000040 <description>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000041 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000042 </description>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000043 <organization>
44 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000045 <url>http://felix.apache.org/</url>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000046 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000047 <scm>
Carsten Ziegeler65f492b2007-08-22 06:57:20 +000048 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-io</connection>
49 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-io</developerConnection>
50 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-io</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000051 </scm>
52
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000053 <dependencies>
54 <dependency>
Carsten Ziegelered37a882007-07-04 17:08:28 +000055 <groupId>org.apache.commons</groupId>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000056 <artifactId>${pkgArtifactId}</artifactId>
57 <version>${pkgVersion}</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000058 </dependency>
59 </dependencies>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000060 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000064 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000065 <version>1.2.1</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000066 <extensions>true</extensions>
67 <configuration>
68 <instructions>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000069 <Bundle-SymbolicName>
70 ${pom.artifactId}
71 </Bundle-SymbolicName>
72 <Export-Package>*;version=${pkgVersion}</Export-Package>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000073 </instructions>
74 </configuration>
75 </plugin>
76 </plugins>
77 </build>
Carsten Ziegeler67d20732007-08-22 06:57:07 +000078</project>