blob: db31d751206e778097c95925885072efbf643c12 [file] [log] [blame]
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.felix.commons</groupId>
<artifactId>commons-build</artifactId>
<version>1.0.0</version>
<relativePath>../pom</relativePath>
</parent>
<properties>
<pkgArtifactId>commons-beanutils</pkgArtifactId>
<pkgVersion>1.7.0</pkgVersion>
<pomVersion>0001</pomVersion>
<osgiVersion>${pkgVersion}</osgiVersion>
</properties>
<groupId>org.apache.felix.commons</groupId>
<artifactId>${pom.groupId}.${pkgArtifactId}</artifactId>
<version>1.7.0-0001</version>
<packaging>bundle</packaging>
<name>${pkgArtifactId} bundle</name>
<description>
This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
</description>
<organization>
<name>Apache Felix Project</name>
<url>http://felix.apache.org/</url>
</organization>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.commons.commons-beanutils-1.7.0-0001</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.commons.commons-beanutils-1.7.0-0001</developerConnection>
<url>http://svn.apache.org/viewcvs/felix/releases/org.apache.felix.commons.commons-beanutils-1.7.0-0001</url>
</scm>
<dependencies>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>${pkgArtifactId}</artifactId>
<version>${pkgVersion}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>
${pom.artifactId}
</Bundle-SymbolicName>
<Export-Package>
!org.apache.commons.collections,
*;version=${pkgVersion}
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>