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