You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ad...@apache.org on 2009/12/15 05:40:53 UTC

svn commit: r890639 - in /mina/sandbox/adc/ahc: api/pom.xml api/src/main/java/org/apache/ahc/client/ mina2/pom.xml mina2/src/ mina3/pom.xml mina3/src/ pom.xml

Author: adc
Date: Tue Dec 15 04:40:53 2009
New Revision: 890639

URL: http://svn.apache.org/viewvc?rev=890639&view=rev
Log:
Intermediate re-org

Added:
    mina/sandbox/adc/ahc/mina2/pom.xml
      - copied unchanged from r890626, mina/sandbox/adc/ahc/api/pom.xml
    mina/sandbox/adc/ahc/mina2/src/
      - copied from r890626, mina/sandbox/adc/ahc/api/src/
    mina/sandbox/adc/ahc/mina3/pom.xml
      - copied unchanged from r890626, mina/sandbox/adc/ahc/api/pom.xml
    mina/sandbox/adc/ahc/mina3/src/
      - copied from r890626, mina/sandbox/adc/ahc/api/src/
    mina/sandbox/adc/ahc/pom.xml
Removed:
    mina/sandbox/adc/ahc/api/src/main/java/org/apache/ahc/client/
Modified:
    mina/sandbox/adc/ahc/api/pom.xml

Modified: mina/sandbox/adc/ahc/api/pom.xml
URL: http://svn.apache.org/viewvc/mina/sandbox/adc/ahc/api/pom.xml?rev=890639&r1=890638&r2=890639&view=diff
==============================================================================
--- mina/sandbox/adc/ahc/api/pom.xml (original)
+++ mina/sandbox/adc/ahc/api/pom.xml Tue Dec 15 04:40:53 2009
@@ -23,55 +23,19 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache</groupId>
-        <artifactId>apache</artifactId>
-        <version>4</version>
+        <groupId>org.apache.ahc</groupId>
+        <artifactId>project</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
     </parent>
 
-    <groupId>org.apache.ahc</groupId>
     <artifactId>client</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
     <name>Apache Asynchronous HTTP Client</name>
     <packaging>jar</packaging>
 
-    <build>
-        <plugins>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <encoding>UTF-8</encoding>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                    <debug>true</debug>
-                    <optimize>true</optimize>
-                    <showDeprecations>true</showDeprecations>
-                </configuration>
-            </plugin>
-
-        </plugins>
-    </build>
+    <build/>
 
     <properties>
         <minaVersion>2.0.0-RC1</minaVersion>
     </properties>
 
-    <dependencies>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.5</version>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.mina</groupId>
-            <artifactId>mina-core</artifactId>
-            <version>${minaVersion}</version>
-        </dependency>
-
-    </dependencies>
-
 </project>

Added: mina/sandbox/adc/ahc/pom.xml
URL: http://svn.apache.org/viewvc/mina/sandbox/adc/ahc/pom.xml?rev=890639&view=auto
==============================================================================
--- mina/sandbox/adc/ahc/pom.xml (added)
+++ mina/sandbox/adc/ahc/pom.xml Tue Dec 15 04:40:53 2009
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    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</groupId>
+    <artifactId>apache</artifactId>
+    <version>6</version>
+  </parent>
+
+  <groupId>org.apache.ahc</groupId>
+  <artifactId>project</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>Apache Asynchronous HTTP Client</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>api</module>
+    <module>mina2</module>
+    <module>mina3</module>
+  </modules>
+
+  <build>
+    <plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <encoding>UTF-8</encoding>
+          <source>1.5</source>
+          <target>1.5</target>
+          <debug>true</debug>
+          <optimize>true</optimize>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <dependencyManagement>
+    <dependencies>
+
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.5</version>
+        <scope>test</scope>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+</project>