57 lines
1.6 KiB
Diff
57 lines
1.6 KiB
Diff
--- httpcore/pom.xml.sav 2011-03-10 11:17:08.579282001 -0500
|
|
+++ httpcore/pom.xml 2011-03-10 11:17:32.655282215 -0500
|
|
@@ -39,7 +39,7 @@
|
|
HttpComponents Core (blocking I/O)
|
|
</description>
|
|
<url>http://hc.apache.org/httpcomponents-core-ga/</url>
|
|
- <packaging>jar</packaging>
|
|
+ <packaging>bundle</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
@@ -111,6 +111,16 @@
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.felix</groupId>
|
|
+ <artifactId>maven-bundle-plugin</artifactId>
|
|
+ <extensions>true</extensions>
|
|
+ <configuration>
|
|
+ <instructions>
|
|
+ <Export-Package>*</Export-Package>
|
|
+ </instructions>
|
|
+ </configuration>
|
|
+ </plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
--- httpcore-nio/pom.xml.sav 2011-03-10 11:17:08.579282001 -0500
|
|
+++ httpcore-nio/pom.xml 2011-03-10 11:17:57.120281971 -0500
|
|
@@ -39,7 +39,7 @@
|
|
HttpComponents Core (non-blocking I/O)
|
|
</description>
|
|
<url>http://hc.apache.org/httpcomponents-core/</url>
|
|
- <packaging>jar</packaging>
|
|
+ <packaging>bundle</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
@@ -103,6 +103,16 @@
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.felix</groupId>
|
|
+ <artifactId>maven-bundle-plugin</artifactId>
|
|
+ <extensions>true</extensions>
|
|
+ <configuration>
|
|
+ <instructions>
|
|
+ <Export-Package>*</Export-Package>
|
|
+ </instructions>
|
|
+ </configuration>
|
|
+ </plugin>
|
|
</plugins>
|
|
</build>
|
|
|