Updated web site for HttpClient 4.2-beta1 release
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1240774 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
648e5ab9be
commit
68b0243fdb
|
@ -135,6 +135,11 @@ This is the successor to the widely used Jakarta Commons HttpClient 3.1.
|
|||
<created>2011-08-07</created>
|
||||
<revision>4.1.2 GA</revision>
|
||||
</Version>
|
||||
<Version>
|
||||
<name>httpcomponents-client-4.2-alpha1</name>
|
||||
<created>2011-11-03</created>
|
||||
<revision>4.2-alpha1</revision>
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<repository>
|
||||
|
|
|
@ -42,46 +42,46 @@ HttpClient Downloads
|
|||
in your {{{http://maven.apache.org/guides/introduction/introduction-to-the-pom.html}pom.xml}}
|
||||
by adding the following block to the dependency descriptor:
|
||||
|
||||
* {HttpComponents Client 4.2-alpha1}
|
||||
* {HttpComponents Client 4.2-beta1}
|
||||
|
||||
-------------------------
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.2-alpha1</version>
|
||||
<version>4.2-beta1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
-------------------------
|
||||
|
||||
* {HttpComponents HttpMime 4.2-alpha1}
|
||||
* {HttpComponents HttpMime 4.2-beta1}
|
||||
|
||||
-------------------------
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpmime</artifactId>
|
||||
<version>4.2-alpha1</version>
|
||||
<version>4.2-beta1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
-------------------------
|
||||
|
||||
* {HttpComponents HttpClient Cache 4.2-alpha1}
|
||||
* {HttpComponents HttpClient Cache 4.2-beta1}
|
||||
|
||||
-------------------------
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient-cache</artifactId>
|
||||
<version>4.2-alpha1</version>
|
||||
<version>4.2-beta1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
-------------------------
|
||||
|
||||
* {HttpComponents HttpClient Fluent 4.2-alpha1}
|
||||
* {HttpComponents HttpClient Fluent 4.2-beta1}
|
||||
|
||||
-------------------------
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>hc-fluent</artifactId>
|
||||
<version>4.2-alpha1</version>
|
||||
<version>4.2-beta1</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
-------------------------
|
||||
|
|
|
@ -64,7 +64,7 @@ HttpClient Overview
|
|||
|
||||
* Tunneled HTTPS connections through HTTP proxies, via the CONNECT method.
|
||||
|
||||
* Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO/Kerberos authentication schemes.
|
||||
* Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO, Kerberos authentication schemes.
|
||||
|
||||
* Plug-in mechanism for custom authentication schemes.
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@ HttpClient Quick Start
|
|||
[[1]] Download 'Binary' package of the latest official release from
|
||||
the {{{http://hc.apache.org/downloads.cgi} project download page}}.
|
||||
|
||||
There should be 5 jars in total (components marked with (*) are optional if MIME multipart
|
||||
support is not required)
|
||||
There should be 7 jars in total (components marked with (*) include additional features and
|
||||
are optional)
|
||||
|
||||
* commons-logging-<x.x.x>.jar
|
||||
|
||||
|
@ -46,6 +46,10 @@ HttpClient Quick Start
|
|||
|
||||
* httpmime-<x.x.x>.jar (*)
|
||||
|
||||
* httpclient-cache-<x.x.x>.jar (*)
|
||||
|
||||
* fluent-hc-<x.x.x>.jar (*)
|
||||
|
||||
[]
|
||||
|
||||
[[2]] Take a look at the HttpClient tutorial shipped with the release package or available
|
||||
|
@ -56,4 +60,4 @@ HttpClient Quick Start
|
|||
|
||||
[[4]] Please note that HttpClient is not a browser. Importantly it lacks UI, cache, HTML
|
||||
renderer and a JavaScript engine. To learn more about the scope of HttpClient please refer to
|
||||
{{{./primer.html}HttpClient Primer}}
|
||||
{{{./primer.html}HttpClient Primer}}
|
||||
|
|
Loading…
Reference in New Issue