blob: 81ddfb2593dce37bd161ed80dc7487ec41b7392a [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-digester-osgi</artifactId>
15 <version>1.8</version>
16 <packaging>bundle</packaging>
17
18 <name>${pom.artifactId} bundle</name>
19 <description>
20 This bundle simply wraps commons-digester-${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-digester</groupId>
31 <artifactId>commons-digester</artifactId>
32 <version>${pom.version}</version>
33 <exclusions>
34 <exclusion>
35 <groupId>commons-beanutils</groupId>
36 <artifactId>commons-beanutils</artifactId>
37 </exclusion>
38 <exclusion>
39 <groupId>commons-logging</groupId>
40 <artifactId>commons-logging</artifactId>
41 </exclusion>
42 <exclusion>
43 <groupId>commons-collections</groupId>
44 <artifactId>commons-collections</artifactId>
45 </exclusion>
46 <exclusion>
47 <groupId>xml-apis</groupId>
48 <artifactId>xml-apis</artifactId>
49 </exclusion>
50 </exclusions>
51 </dependency>
52 </dependencies>
53
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
59 <extensions>true</extensions>
60 <configuration>
61 <instructions>
62 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
63 <Export-Package>
64 *
65 </Export-Package>
66 <DynamicImport-Package>
67 org.apache.commons.logging.impl
68 </DynamicImport-Package>
69 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74</project>