blob: 48253688d974667a27f208e51eb3af38dbf7201f [file] [log] [blame]
Carsten Ziegeler67d20732007-08-22 06:57:07 +00001<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 +00002 <modelVersion>4.0.0</modelVersion>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +00003 <parent>
4 <groupId>org.apache.felix.commons</groupId>
Carsten Ziegeleref09a2c2007-07-24 09:39:40 +00005 <artifactId>commons-build</artifactId>
Carsten Ziegeler08d11b72007-08-22 06:46:55 +00006 <version>1.0.0</version>
Carsten Ziegeler7baa52a2007-07-24 09:31:07 +00007 <relativePath>../pom</relativePath>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +00008 </parent>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +00009 <properties>
10 <pkgArtifactId>commons-io</pkgArtifactId>
Carsten Ziegelered37a882007-07-04 17:08:28 +000011 <pkgVersion>1.3.2</pkgVersion>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000012 <pomVersion>0001</pomVersion>
Carsten Ziegelerf66bc732007-07-05 06:20:13 +000013 <osgiVersion>${pkgVersion}</osgiVersion>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000014 </properties>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000015 <groupId>org.apache.felix.commons</groupId>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000016 <artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
Carsten Ziegeler65f492b2007-08-22 06:57:20 +000017 <version>1.3.2-0002-SNAPSHOT</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000018 <packaging>bundle</packaging>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000019 <name>${pkgArtifactId} bundle</name>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000020 <description>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000021 This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000022 </description>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000023 <organization>
24 <name>Apache Felix Project</name>
Karl Pauls5a105ac2007-06-18 20:54:19 +000025 <url>http://felix.apache.org/</url>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000026 </organization>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000027 <scm>
Carsten Ziegeler65f492b2007-08-22 06:57:20 +000028 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-io</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-io</developerConnection>
30 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-io</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000031 </scm>
32
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000033 <dependencies>
34 <dependency>
Carsten Ziegelered37a882007-07-04 17:08:28 +000035 <groupId>org.apache.commons</groupId>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000036 <artifactId>${pkgArtifactId}</artifactId>
37 <version>${pkgVersion}</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000038 </dependency>
39 </dependencies>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000044 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000048 <Bundle-SymbolicName>
49 ${pom.artifactId}
50 </Bundle-SymbolicName>
51 <Export-Package>*;version=${pkgVersion}</Export-Package>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000052 </instructions>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Carsten Ziegeler67d20732007-08-22 06:57:07 +000057</project>