You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2007/05/20 22:36:30 UTC

svn commit: r539933 - in /jakarta/httpcomponents/httpclient/trunk: ./ contrib/ module-client/ module-client/src/ module-client/src/examples/ module-client/src/main/ module-client/src/main/java/ module-client/src/main/resources/ module-client/src/site/ ...

Author: olegk
Date: Sun May 20 13:36:28 2007
New Revision: 539933

URL: http://svn.apache.org/viewvc?view=rev&rev=539933
Log:
Maven2 friendly directory layout; Initial commit of the Maven2 project metadata

Added:
    jakarta/httpcomponents/httpclient/trunk/LICENSE.txt
      - copied unchanged from r539927, jakarta/httpcomponents/httpcore/trunk/LICENSE.txt
    jakarta/httpcomponents/httpclient/trunk/contrib/
      - copied from r539896, jakarta/httpcomponents/httpclient/trunk/src/contrib/
    jakarta/httpcomponents/httpclient/trunk/module-client/
    jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml   (with props)
    jakarta/httpcomponents/httpclient/trunk/module-client/src/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/examples/
      - copied from r539896, jakarta/httpcomponents/httpclient/trunk/src/examples/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/main/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/main/java/
      - copied from r539896, jakarta/httpcomponents/httpclient/trunk/src/java/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/main/resources/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/site/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/test/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/test/java/
    jakarta/httpcomponents/httpclient/trunk/module-client/src/test/java/org/
      - copied from r539896, jakarta/httpcomponents/httpclient/trunk/src/test/org/
    jakarta/httpcomponents/httpclient/trunk/pom.xml   (with props)
Removed:
    jakarta/httpcomponents/httpclient/trunk/src/contrib/
    jakarta/httpcomponents/httpclient/trunk/src/examples/
    jakarta/httpcomponents/httpclient/trunk/src/java/
    jakarta/httpcomponents/httpclient/trunk/src/test/org/

Added: jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml?view=auto&rev=539933
==============================================================================
--- jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml (added)
+++ jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml Sun May 20 13:36:28 2007
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+   $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 />.
+ -->
+
+<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.httpcomponents</groupId>
+    <artifactId>client</artifactId>
+    <version>4.0-alpha1-SNAPSHOT</version>
+  </parent>
+  <artifactId>httpclient</artifactId>
+  <name>HttpClient (base module)</name>
+  <inceptionYear>2000</inceptionYear>
+  <description>
+   HttpComponents Client (base module)
+  </description>
+  <url>http://jakarta.apache.org/httpcomponents/httpclient</url>
+  <packaging>jar</packaging>  
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>../LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk/module-client</connection>
+    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk/module-client</developerConnection>
+    <url>http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk/module-client</url>
+  </scm>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>jakarta-httpcore</artifactId>
+      <version>4.0-alpha5-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.3</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <properties>
+    <maven.compile.source>1.4</maven.compile.source>
+    <maven.compile.target>1.4</maven.compile.target>
+    <maven.compile.optimize>true</maven.compile.optimize>
+    <maven.compile.deprecation>true</maven.compile.deprecation>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+          <optimize>${maven.compile.optimize}</optimize>
+          <showDeprecations>${maven.compile.deprecation}</showDeprecations>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/TestAll.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-project-info-reports-plugin</artifactId>
+         <reportSets>
+           <reportSet>
+             <reports>
+               <report>dependencies</report>
+               <report>issue-tracking</report>
+               <report>scm</report>
+             </reports>
+           </reportSet>
+         </reportSets>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>

Propchange: jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpclient/trunk/module-client/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: jakarta/httpcomponents/httpclient/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpclient/trunk/pom.xml?view=auto&rev=539933
==============================================================================
--- jakarta/httpcomponents/httpclient/trunk/pom.xml (added)
+++ jakarta/httpcomponents/httpclient/trunk/pom.xml Sun May 20 13:36:28 2007
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+   $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 />.
+ -->
+<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">
+  <parent>
+    <artifactId>project</artifactId>
+    <groupId>org.apache.httpcomponents</groupId>
+    <version>4.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.httpcomponents</groupId>
+  <artifactId>client</artifactId>
+  <name>HttpComponents Client</name>
+  <version>4.0-alpha1-SNAPSHOT</version>
+  <description>Components to build client side HTTP services</description>
+  <url>http://jakarta.apache.org/httpcomponents/httpclient</url>
+  <inceptionYear>2000</inceptionYear>
+  <packaging>pom</packaging>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/HTTPCLIENT</url>
+  </issueManagement>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk</connection>
+    <developerConnection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk</developerConnection>
+    <url>http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk</url>
+  </scm>
+
+  <modules>
+    <module>module-client</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <tagBase>https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/tags/</tagBase>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+        <configuration>
+          <flushPolicy>threaded</flushPolicy>
+          <flushInterval>100</flushInterval>
+          <targetPercentage>50%</targetPercentage>
+        </configuration>
+        <executions>
+          <execution>
+            <id>site</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>instrument</goal>
+              <goal>aggregate</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+       <plugin>
+         <artifactId>maven-project-info-reports-plugin</artifactId>
+         <reportSets>
+           <reportSet>
+             <reports>
+               <report>project-team</report>
+               <report>mailing-list</report>
+               <report>issue-tracking</report>
+               <report>scm</report>
+             </reports>
+           </reportSet>
+         </reportSets>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+        <configuration>
+          <jdk>1.5</jdk>
+          <licenseLocation>${clover.license}</licenseLocation>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+</project>

Propchange: jakarta/httpcomponents/httpclient/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpclient/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpclient/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml