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:
Oleg Kalnichevski 2010-11-15 20:32:17 +00:00
parent bb9ad833c1
commit d3bfd2fc11
1 changed files with 9 additions and 1 deletions

View File

@ -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>