I wanted to avoid a direct dependency on Commons IO, since it is a transitive dependency due to mime4j anyway, but apparently GUMP cannot handle transitive dependencies well

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@627070 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-02-12 20:06:50 +00:00
parent 9c602edefc
commit fb02238bb7
2 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,7 @@
<artifactId>httpcomponents-client</artifactId>
<version>4.0-alpha3-SNAPSHOT</version>
</parent>
<artifactId>httpclient-mime</artifactId>
<artifactId>httpmime</artifactId>
<name>HttpClient (MIME entities)</name>
<inceptionYear>2000</inceptionYear>
<description>
@ -70,6 +70,11 @@
<artifactId>apache-mime4j</artifactId>
<version>${mime4j.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>

View File

@ -73,6 +73,7 @@
<httpcore.version>4.0-beta1</httpcore.version>
<commons-logging.version>1.1.1</commons-logging.version>
<commons-codec.version>1.3</commons-codec.version>
<commons-io.version>1.2</commons-io.version>
<mime4j.version>0.3</mime4j.version>
<junit.version>3.8.1</junit.version>
</properties>