Fixed cache module optional depdencies
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1035431 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bb9ad833c1
commit
d3bfd2fc11
|
@ -60,6 +60,12 @@
|
|||
<version>${project.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient-cache</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
|
@ -115,7 +121,9 @@
|
|||
org.apache.http.util;version=${httpcore.version},
|
||||
org.apache.http.impl;version=${httpcore.version},
|
||||
org.apache.http.impl.entity;version=${httpcore.version},
|
||||
org.apache.http.impl.io;version=${httpcore.version}
|
||||
org.apache.http.impl.io;version=${httpcore.version},
|
||||
net.sf.ehcache.*;resolution:=optional,
|
||||
net.spy.memcached.*;resolution:=optional
|
||||
</Import-Package>
|
||||
<!-- Stop the JAVA_1_n_HOME variables from being treated as headers by Bnd -->
|
||||
<_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME</_removeheaders>
|
||||
|
|
Loading…
Reference in New Issue