Author: veithen
Date: Sun Oct 28 19:07:28 2012
New Revision: 1403076
URL: http://svn.apache.org/viewvc?rev=1403076&view=rev
Log:
Moved the HttpClient 3 based HTTP transport to a separate Maven module.
Added:
axis/axis1/java/trunk/axis-rt-transport-http-hc3/ (with props)
axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml (with props)
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/components/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/components/net/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/components/net/CommonsHTTPClientProperties.java
- copied unchanged from r1401069,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/CommonsHTTPClientProperties.java
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/components/net/CommonsHTTPClientPropertiesFactory.java
- copied unchanged from r1401069,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/CommonsHTTPClientPropertiesFactory.java
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/components/net/DefaultCommonsHTTPClientProperties.java
- copied unchanged from r1401069,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/DefaultCommonsHTTPClientProperties.java
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/transport/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/transport/http/
axis/axis1/java/trunk/axis-rt-transport-http-hc3/src/main/java/org/apache/axis/transport/http/CommonsHTTPSender.java
- copied unchanged from r1401069,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/transport/http/CommonsHTTPSender.java
Removed:
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/CommonsHTTPClientProperties.java
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/CommonsHTTPClientPropertiesFactory.java
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/net/DefaultCommonsHTTPClientProperties.java
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/transport/http/CommonsHTTPSender.java
Modified:
axis/axis1/java/trunk/axis-rt-core/pom.xml
axis/axis1/java/trunk/pom.xml
Modified: axis/axis1/java/trunk/axis-rt-core/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/pom.xml?rev=1403076&r1=1403075&r2=1403076&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-core/pom.xml (original)
+++ axis/axis1/java/trunk/axis-rt-core/pom.xml Sun Oct 28 19:07:28 2012
@@ -71,18 +71,6 @@
<version>2.6.2</version>
</dependency>
<dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.0.1</version>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>jetty</groupId>
<artifactId>jetty</artifactId>
<version>5.1.10</version>
Propchange: axis/axis1/java/trunk/axis-rt-transport-http-hc3/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Oct 28 19:07:28 2012
@@ -0,0 +1,4 @@
+.classpath
+.project
+target
+.settings
Added: axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml?rev=1403076&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml (added)
+++ axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml Sun Oct 28
19:07:28 2012
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ 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.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.axis</groupId>
+ <artifactId>axis-project</artifactId>
+ <version>1.4.1-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>axis-rt-transport-http-hc3</artifactId>
+ <name>HttpClient 3 Transport</name>
+ <description>
+ An alternative HTTP transport that uses HttpClient 3.
+ </description>
+ <url>${baseUrl}/transports/http-hc3</url>
+ <distributionManagement>
+ <site>
+ <id>axis</id>
+ <url>${baseSiteUrl}/transports/http-hc3</url>
+ </site>
+ </distributionManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.0.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.4</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ <report>dependencies</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
Propchange: axis/axis1/java/trunk/axis-rt-transport-http-hc3/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: axis/axis1/java/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1403076&r1=1403075&r2=1403076&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sun Oct 28 19:07:28 2012
@@ -65,6 +65,7 @@
<module>axis-rt-jws</module>
<module>axis-rt-databinding-castor</module>
<module>axis-rt-provider-bsf</module>
+ <module>axis-rt-transport-http-hc3</module>
<module>axis-rt-transport-http-javanet</module>
<module>axis-rt-transport-jms</module>
<module>axis-rt-transport-mail</module>