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:31:28 UTC

svn commit: r430472 - in /jakarta/httpcomponents/httpcore/trunk: core/ core/src/main/assembly/ nio/ nio/pom.xml src/main/ src/main/assembly/

Author: olegk
Date: Thu Aug 10 11:31:28 2006
New Revision: 430472

URL: http://svn.apache.org/viewvc?rev=430472&view=rev
Log:
Added NIO module to HttpCore

Added:
    jakarta/httpcomponents/httpcore/trunk/nio/
    jakarta/httpcomponents/httpcore/trunk/nio/pom.xml   (with props)
    jakarta/httpcomponents/httpcore/trunk/src/main/
    jakarta/httpcomponents/httpcore/trunk/src/main/assembly/
      - copied from r430469, jakarta/httpcomponents/httpcore/trunk/core/src/main/assembly/
Removed:
    jakarta/httpcomponents/httpcore/trunk/core/src/main/assembly/
Modified:
    jakarta/httpcomponents/httpcore/trunk/core/   (props changed)

Propchange: jakarta/httpcomponents/httpcore/trunk/core/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Aug 10 11:31:28 2006
@@ -0,0 +1,2 @@
+
+target

Added: jakarta/httpcomponents/httpcore/trunk/nio/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/nio/pom.xml?rev=430472&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/nio/pom.xml (added)
+++ jakarta/httpcomponents/httpcore/trunk/nio/pom.xml Thu Aug 10 11:31:28 2006
@@ -0,0 +1,55 @@
+<?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-nio</artifactId>
+  <name>HttpCore (NIO extensions)</name>
+  <inceptionYear>2005</inceptionYear>
+  <description>
+   Core HTTP components (NIO extensions)
+  </description>
+  <url>http://jakarta.apache.org/httpcomponents/httpcore</url>
+  <packaging>jar</packaging>  
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>jakarta-httpcore</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+    <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.4</source>
+          <target>1.4</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/nio/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

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