You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ak...@apache.org on 2008/01/26 22:08:42 UTC

svn commit: r615493 - in /mina/asyncweb/trunk: client/pom.xml codec/ common/ common/pom.xml common/src/ pom.xml server/pom.xml

Author: akarasulu
Date: Sat Jan 26 13:08:41 2008
New Revision: 615493

URL: http://svn.apache.org/viewvc?rev=615493&view=rev
Log:
renamed asyncweb codec project module and artifactId to common and asyncweb-
common respectively

NOTE:

  o common is shared between the client and server
  o common has both shared API and codec
  o originally before the codec was moved out of asyncweb the use of mina was
    abstracted away and separable so that other things like grizzly could be 
    used in it's place: this was a good tool in the past for showing MINA's
    performance advantage. Now this capability is lost but we can recover it 
    again.


Added:
    mina/asyncweb/trunk/common/
      - copied from r615488, mina/asyncweb/trunk/codec/
    mina/asyncweb/trunk/common/pom.xml
      - copied, changed from r615490, mina/asyncweb/trunk/codec/pom.xml
    mina/asyncweb/trunk/common/src/
      - copied from r615490, mina/asyncweb/trunk/codec/src/
Removed:
    mina/asyncweb/trunk/codec/
Modified:
    mina/asyncweb/trunk/client/pom.xml
    mina/asyncweb/trunk/pom.xml
    mina/asyncweb/trunk/server/pom.xml

Modified: mina/asyncweb/trunk/client/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/client/pom.xml?rev=615493&r1=615492&r2=615493&view=diff
==============================================================================
--- mina/asyncweb/trunk/client/pom.xml (original)
+++ mina/asyncweb/trunk/client/pom.xml Sat Jan 26 13:08:41 2008
@@ -38,7 +38,7 @@
   <dependencies>
     <dependency>
       <groupId>${groupId}</groupId>
-      <artifactId>asyncweb-codec</artifactId>
+      <artifactId>asyncweb-common</artifactId>
     </dependency>
 
     <dependency>

Copied: mina/asyncweb/trunk/common/pom.xml (from r615490, mina/asyncweb/trunk/codec/pom.xml)
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/common/pom.xml?p2=mina/asyncweb/trunk/common/pom.xml&p1=mina/asyncweb/trunk/codec/pom.xml&r1=615490&r2=615493&rev=615493&view=diff
==============================================================================
--- mina/asyncweb/trunk/codec/pom.xml (original)
+++ mina/asyncweb/trunk/common/pom.xml Sat Jan 26 13:08:41 2008
@@ -24,12 +24,12 @@
     <version>0.9.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <artifactId>asyncweb-codec</artifactId>
-  <name>Apache Asyncweb Codec</name>
+  <artifactId>asyncweb-common</artifactId>
+  <name>Apache Asyncweb Common</name>
   <packaging>bundle</packaging>
 
   <properties>
-    <exportedPackage>${groupId}.codec</exportedPackage>
+    <exportedPackage>${groupId}.common</exportedPackage>
   </properties>
 
   <dependencies>

Modified: mina/asyncweb/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/pom.xml?rev=615493&r1=615492&r2=615493&view=diff
==============================================================================
--- mina/asyncweb/trunk/pom.xml (original)
+++ mina/asyncweb/trunk/pom.xml Sat Jan 26 13:08:41 2008
@@ -127,7 +127,7 @@
 
   <modules>
     <module>server</module>
-    <module>codec</module>
+    <module>common</module>
     <module>client</module>
     <module>spring</module>
     <module>examples</module>
@@ -237,7 +237,7 @@
 
        <dependency>
         <groupId>${groupId}</groupId>
-        <artifactId>asyncweb-codec</artifactId>
+        <artifactId>asyncweb-common</artifactId>
         <version>${pom.version}</version>
       </dependency>
 

Modified: mina/asyncweb/trunk/server/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/server/pom.xml?rev=615493&r1=615492&r2=615493&view=diff
==============================================================================
--- mina/asyncweb/trunk/server/pom.xml (original)
+++ mina/asyncweb/trunk/server/pom.xml Sat Jan 26 13:08:41 2008
@@ -42,7 +42,7 @@
 
     <dependency>
       <groupId>${groupId}</groupId>
-      <artifactId>asyncweb-codec</artifactId>
+      <artifactId>asyncweb-common</artifactId>
     </dependency>
   </dependencies>
 </project>