blob: dea6672c461b853e87fd311609aa7be829192ec9 [file] [log] [blame]
Carsten Ziegelerbd9b3d52007-08-22 06:52:13 +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-beanutils</pkgArtifactId>
11 <pkgVersion>1.7.0</pkgVersion>
12 <pomVersion>0001</pomVersion>
13 <osgiVersion>${pkgVersion}</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 Ziegelere8275af2007-08-22 06:52:25 +000017 <version>1.7.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 Ziegelere8275af2007-08-22 06:52:25 +000028 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/commons/commons-beanutils</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/commons/commons-beanutils</developerConnection>
30 <url>http://svn.apache.org/viewcvs/felix/trunk/commons/commons-beanutils</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-beanutils</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 <exclusions>
38 <exclusion>
39 <groupId>commons-logging</groupId>
40 <artifactId>commons-logging</artifactId>
41 </exclusion>
42 </exclusions>
43 </dependency>
44 </dependencies>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000045 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000049 <artifactId>maven-bundle-plugin</artifactId>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000050 <extensions>true</extensions>
51 <configuration>
52 <instructions>
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000053 <Bundle-SymbolicName>
54 ${pom.artifactId}
55 </Bundle-SymbolicName>
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000056 <Export-Package>
57 !org.apache.commons.collections,
Michael E. Rodriguez20dfdb32007-03-14 03:54:24 +000058 *;version=${pkgVersion}
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +000059 </Export-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
Carsten Ziegelerbd9b3d52007-08-22 06:52:13 +000065</project>