Skip to content

Commit

Permalink
Replace embedded Apache HTTP bundles with standalone HTTP bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
nateyolles committed Sep 26, 2015
1 parent ddf63e7 commit f6fa378
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions core/pom.xml
Expand Up @@ -42,8 +42,6 @@
<instructions>
<Embed-Dependency>
commons-lang3,
httpcore,
httpclient,
java-akismet
</Embed-Dependency>
</instructions>
Expand Down Expand Up @@ -236,6 +234,26 @@
<bundleFileName>${project.build.directory}/dependency/commons-logging-1.2.jar</bundleFileName>
</configuration>
</execution>
<execution>
<id>install-httpcore</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>install</phase>
<configuration>
<bundleFileName>${project.build.directory}/dependency/httpcore-osgi-4.4.3.jar</bundleFileName>
</configuration>
</execution>
<execution>
<id>install-httpclient</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>install</phase>
<configuration>
<bundleFileName>${project.build.directory}/dependency/httpclient-osgi-4.5.jar</bundleFileName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Expand Down Expand Up @@ -412,12 +430,12 @@
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<artifactId>httpcore-osgi</artifactId>
<version>4.4.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<artifactId>httpclient-osgi</artifactId>
<version>4.5</version>
</dependency>
<dependency>
Expand Down

0 comments on commit f6fa378

Please sign in to comment.