Added assembly descriptors; javadoc fix; added readme file

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@554598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2007-07-09 10:33:18 +00:00
parent dfeee678b3
commit ebbc30a916
7 changed files with 298 additions and 1 deletions

9
README.txt Normal file
View File

@ -0,0 +1,9 @@
Jakarta HttpComponents HttpClient
===============================
Welcome to the HttpClient component of the Jakarta HttpComponents
project.
Visit the project site at
http://jakarta.apache.org/httpcomponents/
for more information.

View File

@ -55,7 +55,7 @@ import java.security.SecureRandom;
import java.security.UnrecoverableKeyException;
/**
* Secure socket factory based on {@link javax.net.ssl JSSE}
* Secure socket factory based on JSSE
*.
* <p>
* SSLProtocolSocketFactory can be used to validate the identity of the HTTPS

12
pom.xml
View File

@ -86,6 +86,18 @@
<tagBase>https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/tags/</tagBase>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin-unix.xml</descriptor>
<descriptor>src/main/assembly/bin-win.xml</descriptor>
<descriptor>src/main/assembly/src-unix.xml</descriptor>
<descriptor>src/main/assembly/src-win.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clover-plugin</artifactId>

View File

@ -0,0 +1,66 @@
<!--
$HeadURL$
$Revision$
$Date$
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
-->
<assembly>
<id>bin-unix</id>
<formats>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>README.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>RELEASE_NOTES.txt</include>
</includes>
<lineEnding>lf</lineEnding>
</fileSet>
<!-- Base module -->
<fileSet>
<directory>module-client/target</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>module-client/target/site/apidocs</directory>
<outputDirectory>javadoc/httpclient</outputDirectory>
</fileSet>
<fileSet>
<directory>module-client/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<lineEnding>lf</lineEnding>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
</fileSets>
</assembly>

View File

@ -0,0 +1,66 @@
<!--
$HeadURL$
$Revision$
$Date$
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
-->
<assembly>
<id>bin-win</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>README.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>RELEASE_NOTES.txt</include>
</includes>
<lineEnding>crlf</lineEnding>
</fileSet>
<!-- Base module -->
<fileSet>
<directory>module-client/target</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>module-client/target/site/apidocs</directory>
<outputDirectory>javadoc/httpclient</outputDirectory>
</fileSet>
<fileSet>
<directory>module-client/src/examples/</directory>
<outputDirectory>examples</outputDirectory>
<lineEnding>crlf</lineEnding>
<includes>
<include>**/*.java</include>
</includes>
</fileSet>
</fileSets>
</assembly>

View File

@ -0,0 +1,72 @@
<!--
$HeadURL$
$Revision$
$Date$
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
-->
<assembly>
<id>src-unix</id>
<formats>
<format>tar.gz</format>
</formats>
<fileSets>
<!-- Release materials -->
<fileSet>
<includes>
<include>README.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>RELEASE_NOTES.txt</include>
</includes>
<lineEnding>lf</lineEnding>
</fileSet>
<!-- Build files -->
<fileSet>
<includes>
<include>*.xml</include>
</includes>
<lineEnding>lf</lineEnding>
</fileSet>
<!-- Base module source and text resources -->
<fileSet>
<directory>module-client/src</directory>
<outputDirectory>module-client/src</outputDirectory>
<lineEnding>lf</lineEnding>
<excludes>
<exclude>site/**</exclude>
</excludes>
</fileSet>
<!-- Base module build files -->
<fileSet>
<directory>module-client</directory>
<outputDirectory>module-client</outputDirectory>
<lineEnding>lf</lineEnding>
<includes>
<include>*.xml</include>
</includes>
</fileSet>
</fileSets>
</assembly>

View File

@ -0,0 +1,72 @@
<!--
$HeadURL$
$Revision$
$Date$
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
-->
<assembly>
<id>src-win</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<!-- Release materials -->
<fileSet>
<includes>
<include>README.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>RELEASE_NOTES.txt</include>
</includes>
<lineEnding>crlf</lineEnding>
</fileSet>
<!-- Build files -->
<fileSet>
<includes>
<include>*.xml</include>
</includes>
<lineEnding>crlf</lineEnding>
</fileSet>
<!-- Base module source and text resources -->
<fileSet>
<directory>module-client/src</directory>
<outputDirectory>module-client/src</outputDirectory>
<lineEnding>crlf</lineEnding>
<excludes>
<exclude>site/**</exclude>
</excludes>
</fileSet>
<!-- Base module build files -->
<fileSet>
<directory>module-client</directory>
<outputDirectory>module-client</outputDirectory>
<lineEnding>crlf</lineEnding>
<includes>
<include>*.xml</include>
</includes>
</fileSet>
</fileSets>
</assembly>