blob: da7516e8b5e04cdad36364d94a9c904d1fa8c9ef [file] [log] [blame]
Michael E. Rodriguez42fbb1d2007-02-21 23:53:59 +00001<project
2 xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.apache.felix.commons</groupId>
9 <artifactId>build</artifactId>
10 <version>0.9.0-incubator-SNAPSHOT</version>
11 </parent>
12
13 <groupId>org.apache.felix.commons</groupId>
14 <artifactId>commons-beanutils-osgi</artifactId>
15 <version>1.7.0</version>
16 <packaging>bundle</packaging>
17
18 <name>${pom.artifactId} bundle</name>
19 <description>
20 This bundle simply wraps commons-beanutils-${pom.version}.jar.
21 </description>
22
23 <organization>
24 <name>Apache Felix Project</name>
25 <url>http://incubator.apache.org/felix/</url>
26 </organization>
27
28 <dependencies>
29 <dependency>
30 <groupId>commons-beanutils</groupId>
31 <artifactId>commons-beanutils</artifactId>
32 <version>${pom.version}</version>
33 <exclusions>
34 <exclusion>
35 <groupId>commons-logging</groupId>
36 <artifactId>commons-logging</artifactId>
37 </exclusion>
38 </exclusions>
39 </dependency>
40 </dependencies>
41
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <extensions>true</extensions>
48 <configuration>
49 <instructions>
50 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
51 <Export-Package>
52 !org.apache.commons.collections,
53 *
54 </Export-Package>
55 </instructions>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60</project>