blob: f3c8007af3d5061e00418534486cc32222cdc3ae [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-configuration-osgi</artifactId>
15 <version>1.3</version>
16 <packaging>bundle</packaging>
17
18 <name>${pom.artifactId} bundle</name>
19 <description>
20 This bundle simply wraps commons-configuration-${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-configuration</groupId>
31 <artifactId>commons-configuration</artifactId>
32 <version>${pom.version}</version>
33 <exclusions>
34 <exclusion>
35 <groupId>commons-beanutils</groupId>
36 <artifactId>commons-beanutils-core</artifactId>
37 </exclusion>
38 <exclusion>
39 <groupId>commons-codec</groupId>
40 <artifactId>commons-codec</artifactId>
41 </exclusion>
42 <exclusion>
43 <groupId>commons-collections</groupId>
44 <artifactId>commons-collections</artifactId>
45 </exclusion>
46 <exclusion>
47 <groupId>commons-digester</groupId>
48 <artifactId>commons-digester</artifactId>
49 </exclusion>
50 <exclusion>
51 <groupId>commons-jxpath</groupId>
52 <artifactId>commons-jxpath</artifactId>
53 </exclusion>
54 <exclusion>
55 <groupId>commons-lang</groupId>
56 <artifactId>commons-lang</artifactId>
57 </exclusion>
58 <exclusion>
59 <groupId>commons-logging</groupId>
60 <artifactId>commons-logging-api</artifactId>
61 </exclusion>
62
63 <exclusion>
64 <groupId>xerces</groupId>
65 <artifactId>xerces</artifactId>
66 </exclusion>
67 <exclusion>
68 <groupId>xalan</groupId>
69 <artifactId>xalan</artifactId>
70 </exclusion>
71 <exclusion>
72 <groupId>xml-apis</groupId>
73 <artifactId>xml-apis</artifactId>
74 </exclusion>
75 <exclusion>
76 <groupId>servletapi</groupId>
77 <artifactId>servletapi</artifactId>
78 </exclusion>
79 </exclusions>
80 </dependency>
81 </dependencies>
82
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-bundle-plugin</artifactId>
88 <extensions>true</extensions>
89 <configuration>
90 <instructions>
91 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
92 <Export-Package>
93 *
94 </Export-Package>
95 <DynamicImport-Package>
96 javax.naming,javax.servlet,javax.sql,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.stream,org.apache.commons.beanutils,org.apache.commons.codec.binary,org.apache.commons.digester,org.apache.commons.digester.substitution,org.apache.commons.digester.xmlrules,org.apache.commons.jxpath,org.apache.commons.jxpath.ri,org.apache.commons.jxpath.ri.compiler,org.apache.commons.jxpath.ri.model,org.w3c.dom,org.xml.sax,org.xml.sax.helpers
97 </DynamicImport-Package>
98 </instructions>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103</project>