Removed explicit SCM declarations from module POMs; updated examples page; updated assembly descriptors

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@749059 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2009-03-01 16:41:21 +00:00
parent c211aaf0ca
commit 307ebf2ada
6 changed files with 21 additions and 33 deletions

View File

@ -52,12 +52,6 @@
</license>
</licenses>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client</developerConnection>
<url>https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>

View File

@ -52,12 +52,6 @@
</license>
</licenses>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-httpmime</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-httpmime</developerConnection>
<url>https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-httpmime</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>

View File

@ -63,7 +63,7 @@
</fileSet>
<!-- Base module -->
<fileSet>
<directory>module-client/src/examples/</directory>
<directory>httpclient/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>
@ -71,7 +71,7 @@
</fileSet>
<!-- HttpMime module -->
<fileSet>
<directory>module-httpmime/src/examples/</directory>
<directory>httpmime/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>

View File

@ -63,7 +63,7 @@
</fileSet>
<!-- Base module -->
<fileSet>
<directory>module-client/src/examples/</directory>
<directory>httpclient/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>
@ -71,7 +71,7 @@
</fileSet>
<!-- HttpMime module -->
<fileSet>
<directory>module-httpmime/src/examples/</directory>
<directory>httpmime/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>

View File

@ -61,7 +61,7 @@
</fileSet>
<!-- Base module -->
<fileSet>
<directory>module-client/src/examples/</directory>
<directory>httpclient/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>
@ -69,7 +69,7 @@
</fileSet>
<!-- HttpMime module -->
<fileSet>
<directory>module-httpmime/src/examples/</directory>
<directory>httpmime/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<includes>
<include>**/*.java</include>

View File

@ -34,7 +34,7 @@
HttpClient Examples
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientWithResponseHandler.java}Response handling}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientWithResponseHandler.java}Response handling}}
This example demonstrates how to process HTTP responses using a response handler. This is
the recommended way of executing HTTP requests and processing HTTP responses. This approach
@ -43,50 +43,50 @@ HttpClient Examples
that the underlying HTTP connection will be released back to the connection manager automatically
in all cases.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientConnectionRelease.java}Manual connection release}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientConnectionRelease.java}Manual connection release}}
This example demonstrates how to ensure the release of the underlying HTTP connection back to
the connection manager in case of a manual processing of HTTP responses.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientAbortMethod.java}Abort method}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientAbortMethod.java}Abort method}}
This example demonstrates how to abort an HTTP request before its normal completion.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientAuthentication.java}Client authentication}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientAuthentication.java}Client authentication}}
This example uses HttpClient to execute an HTTP request against a target site that requires user
authentication.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientExecuteProxy.java}Request via a proxy}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientExecuteProxy.java}Request via a proxy}}
This example demonstrates how to send an HTTP request via a proxy.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java}Proxy authentication}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java}Proxy authentication}}
A simple example showing execution of an HTTP request over a secure connection tunneled through
an authenticating proxy.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientChunkEncodedPost.java}Chunk encoded POST}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientChunkEncodedPost.java}Chunk encoded POST}}
This example shows how to stream out a request entity using chunk encoding.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientCustomContext.java}Custom execution context}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientCustomContext.java}Custom execution context}}
This example demonstrates the use of a local HTTP context populated custom attributes.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientFormLogin.java}Form based logon}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientFormLogin.java}Form based logon}}
This example demonstrates how HttpClient can be used to perform form-based logon.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientMultiThreadedExecution.java}Threaded request execution}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientMultiThreadedExecution.java}Threaded request execution}}
An example that executes HTTP requests from multiple worker threads.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientCustomSSL.java}Custom SSL context}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientCustomSSL.java}Custom SSL context}}
This example demonstrates how to create secure connections with a custom SSL context.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientGZipContentCompression.java}Custom protocol interceptors}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientGZipContentCompression.java}Custom protocol interceptors}}
This example shows the use of protocol interceptors to transparently modify properties of HTTP
messages sent / received by the HTTP client.
@ -98,14 +98,14 @@ HttpClient Examples
interceptors makes content compression completely transparent to the consumer of the HttpClient
interface.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java}Preemptive BASIC authentication}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java}Preemptive BASIC authentication}}
This example shows how HttpClient can be customized to authenticate preemptively using BASIC
scheme. Generally, preemptive authentication can be considered less secure than a response to
an authentication challenge and therefore discouraged.
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java}Preemptive DIGEST authentication}}
* {{{http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/httpclient/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java}Preemptive DIGEST authentication}}
This example shows how HttpClient can be customized to authenticate preemptively using DIGEST
scheme. Generally, preemptive authentication can be considered less secure than a response to
an authentication challenge and therefore discouraged.
an authentication challenge and therefore discouraged.