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 2006/08/10 20:22:57 UTC

svn commit: r430469 - in /jakarta/httpcomponents/httpcore/trunk: core/ core/pom.xml core/src/ core/src/main/ core/src/test/ pom.xml src/main/ src/test/

Author: olegk
Date: Thu Aug 10 11:22:56 2006
New Revision: 430469

URL: http://svn.apache.org/viewvc?rev=430469&view=rev
Log:
Added multi-module support to HttpCore

Added:
    jakarta/httpcomponents/httpcore/trunk/core/
    jakarta/httpcomponents/httpcore/trunk/core/pom.xml   (with props)
    jakarta/httpcomponents/httpcore/trunk/core/src/
    jakarta/httpcomponents/httpcore/trunk/core/src/main/
      - copied from r430448, jakarta/httpcomponents/httpcore/trunk/src/main/
    jakarta/httpcomponents/httpcore/trunk/core/src/test/
      - copied from r430448, jakarta/httpcomponents/httpcore/trunk/src/test/
Removed:
    jakarta/httpcomponents/httpcore/trunk/src/main/
    jakarta/httpcomponents/httpcore/trunk/src/test/
Modified:
    jakarta/httpcomponents/httpcore/trunk/pom.xml

Added: jakarta/httpcomponents/httpcore/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/core/pom.xml?rev=430469&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/core/pom.xml (added)
+++ jakarta/httpcomponents/httpcore/trunk/core/pom.xml Thu Aug 10 11:22:56 2006
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.httpcomponents</groupId>
+    <artifactId>jakarta-httpcore-pom</artifactId>
+    <version>4.0-alpha3-SNAPSHOT</version>
+  </parent>
+  <artifactId>jakarta-httpcore</artifactId>
+  <name>HttpCore</name>
+  <inceptionYear>2005</inceptionYear>
+  <description>
+   Core HTTP components (JRE 1.3 compatible)
+  </description>
+  <url>http://jakarta.apache.org/httpcomponents/httpcore</url>
+  <packaging>jar</packaging>  
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.3</source>
+          <target>1.3</target>
+          <optimize>true</optimize>
+          <showDeprecations>true</showDeprecations>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/TestAll.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

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

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

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

Modified: jakarta/httpcomponents/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/pom.xml?rev=430469&r1=430468&r2=430469&view=diff
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/pom.xml (original)
+++ jakarta/httpcomponents/httpcore/trunk/pom.xml Thu Aug 10 11:22:56 2006
@@ -6,16 +6,19 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.httpcomponents</groupId>
-  <artifactId>jakarta-httpcore</artifactId>
-  <name>HttpCore</name>
+  <artifactId>jakarta-httpcore-pom</artifactId>
+  <name>HttpCore Project</name>
   <version>4.0-alpha3-SNAPSHOT</version>
   <description>Core components to build HTTP enabled services</description>
   <url>http://jakarta.apache.org/httpcomponents/httpcore</url>
-  <issueManagement>
-    <system>Jira</system>
-    <url>http://issues.apache.org/jira/browse/HTTPCORE</url>
-  </issueManagement>
   <inceptionYear>2005</inceptionYear>
+  <packaging>pom</packaging>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+
   <licenses>
     <license>
       <name>Apache License</name>
@@ -23,36 +26,26 @@
       <distribution>repo</distribution>
     </license>
   </licenses>
+
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/HTTPCORE</url>
+  </issueManagement>
+
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk</connection>
     <developerConnection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk</developerConnection>
     <url>http://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/trunk</url>
   </scm>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
-  </organization>
+
+  <modules>
+    <module>core</module>
+    <module>nio</module>
+  </modules>
+
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.3</source>
-          <target>1.3</target>
-          <optimize>true</optimize>
-          <showDeprecations>true</showDeprecations>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <includes>
-            <include>**/TestAll.java</include>
-          </includes>
-        </configuration>
-      </plugin>
-      <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
       </plugin>
       <plugin>
@@ -75,14 +68,7 @@
       </plugin>
     </plugins>
   </build>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
+
   <reporting>
     <plugins>
       <plugin>
@@ -119,6 +105,7 @@
       </plugin>
     </plugins>
   </reporting>
+
   <distributionManagement>
     <site>
       <id>apache.website</id>
@@ -131,4 +118,5 @@
       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository</url>
     </repository>
   </distributionManagement>
+
 </project>