blob: cf8a98fd1273102ac38912e4f1854e8e8d15166f [file] [log] [blame]
Carsten Ziegeler70120912007-08-22 06:53:55 +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-codec</pkgArtifactId>
11 <pkgVersion>1.3</pkgVersion>
12 <pomVersion>0001</pomVersion>
13 <osgiVersion>${pkgVersion}.0</osgiVersion>
14 </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 Ziegeler195aadf2007-08-22 06:54:08 +000017 <version>1.3.0-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 Ziegeler195aadf2007-08-22 06:54:08 +000028 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-codec</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-codec</developerConnection>
30 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-codec</url>
Carsten Ziegeler7a79dfb2007-07-24 07:08:51 +000031 </scm>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000032 <dependencies>
33 <dependency>
34 <groupId>commons-codec</groupId>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000035 <artifactId>${pkgArtifactId}</artifactId>
36 <version>${pkgVersion}</version>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000037 </dependency>
38 </dependencies>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000043 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000047 <Bundle-SymbolicName>
48 ${pom.artifactId}
49 </Bundle-SymbolicName>
50 <Export-Package>*;version=${pkgVersion}</Export-Package>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000051 </instructions>
52 </configuration>
53 </plugin>
54 </plugins>
55 </build>
Carsten Ziegeler70120912007-08-22 06:53:55 +000056</project>