You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2006/03/09 20:21:21 UTC

svn commit: r384585 - in /geronimo/trunk/modules: common/ connector/ javamail-transport/ mail/ management/ naming-builder/ naming/ scripts/ session/ spring/ test-ddbean/ timer/ transaction/ util/ web-builder/ webservices/

Author: jlaskowski
Date: Thu Mar  9 11:21:14 2006
New Revision: 384585

URL: http://svn.apache.org/viewcvs?rev=384585&view=rev
Log:
Cleanup and description additions

Removed:
    geronimo/trunk/modules/mail/project.properties
    geronimo/trunk/modules/management/project.properties
    geronimo/trunk/modules/naming/project.properties
    geronimo/trunk/modules/test-ddbean/project.properties
Modified:
    geronimo/trunk/modules/common/pom.xml
    geronimo/trunk/modules/connector/pom.xml
    geronimo/trunk/modules/javamail-transport/pom.xml
    geronimo/trunk/modules/mail/pom.xml
    geronimo/trunk/modules/management/pom.xml
    geronimo/trunk/modules/naming-builder/pom.xml
    geronimo/trunk/modules/naming/pom.xml
    geronimo/trunk/modules/scripts/pom.xml
    geronimo/trunk/modules/session/pom.xml
    geronimo/trunk/modules/spring/pom.xml
    geronimo/trunk/modules/test-ddbean/pom.xml
    geronimo/trunk/modules/timer/pom.xml
    geronimo/trunk/modules/transaction/pom.xml
    geronimo/trunk/modules/util/pom.xml
    geronimo/trunk/modules/web-builder/pom.xml
    geronimo/trunk/modules/webservices/pom.xml

Modified: geronimo/trunk/modules/common/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/common/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/common/pom.xml (original)
+++ geronimo/trunk/modules/common/pom.xml Thu Mar  9 11:21:14 2006
@@ -28,34 +28,24 @@
   <groupId>org.apache.geronimo</groupId>
   <artifactId>geronimo-common</artifactId>
   <version>${geronimoVersion}</version>
-  <packaging>jar</packaging>
   <name>Geronimo :: Common</name>
-
-  <!-- ============ -->
-  <!-- Dependencies -->
-  <!-- ============ -->
-
+  <description>Geronimo Common</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
-    <!-- Thirdparty Dependencies -->
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
   </dependencies>
 </project>

Modified: geronimo/trunk/modules/connector/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/connector/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/connector/pom.xml (original)
+++ geronimo/trunk/modules/connector/pom.xml Thu Mar  9 11:21:14 2006
@@ -28,13 +28,8 @@
   <groupId>org.apache.geronimo</groupId>
   <artifactId>geronimo-connector</artifactId>
   <version>${geronimoVersion}</version>
-  <packaging>jar</packaging>
   <name>Geronimo :: Connector</name>
-
-  <!-- ============ -->
-  <!-- Dependencies -->
-  <!-- ============ -->
-
+  <description>Geronimo Connector</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo</groupId>
@@ -45,79 +40,64 @@
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-deployment</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-management</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-common</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-security</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-transaction</artifactId>
     </dependency>
-
     <!--  test only -->
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-jacc_1.0_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>cglib</groupId>
       <artifactId>cglib-nodep</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
     <dependency>
       <groupId>concurrent</groupId>
       <artifactId>concurrent</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
     <dependency>
       <groupId>tranql</groupId>
       <artifactId>tranql</artifactId>
       <scope>test</scope>
     </dependency>
-
     <!-- needed for passwordcredential realm-->
     <dependency>
       <groupId>regexp</groupId>

Modified: geronimo/trunk/modules/javamail-transport/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/javamail-transport/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/javamail-transport/pom.xml (original)
+++ geronimo/trunk/modules/javamail-transport/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,12 +29,12 @@
   <artifactId>geronimo-javamail-transport</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: JavaMail Transport</name>
+  <description>Geronimo JavaMail Transport</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-activation_1.0.2_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-javamail_1.3.1_spec</artifactId>

Modified: geronimo/trunk/modules/mail/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/mail/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/mail/pom.xml (original)
+++ geronimo/trunk/modules/mail/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,6 +29,7 @@
   <artifactId>geronimo-mail</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Mail</name>  
+  <description>Geronimo Mail</description>
   <build>
     <plugins>
       <plugin>
@@ -44,44 +45,34 @@
     </plugins>
   </build>
   <dependencies>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-management</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-activation_1.0.2_spec</artifactId>
     </dependency>
-
-    <!-- Thirdparty -->
-
     <dependency>
       <groupId>cglib</groupId>
       <artifactId>cglib-nodep</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>

Modified: geronimo/trunk/modules/management/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/management/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/management/pom.xml (original)
+++ geronimo/trunk/modules/management/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,6 +29,7 @@
   <artifactId>geronimo-management</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Management API</name>
+  <description>Contains interfaces that define the management API for Geronimo</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>

Modified: geronimo/trunk/modules/naming-builder/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/naming-builder/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/naming-builder/pom.xml (original)
+++ geronimo/trunk/modules/naming-builder/pom.xml Thu Mar  9 11:21:14 2006
@@ -28,6 +28,7 @@
   <artifactId>geronimo-naming-builder</artifactId>
   <name>Geronimo :: Naming :: Builder</name>
   <version>${geronimoVersion}</version>
+  <description>Geronimo Naming Builder</description>
   <build>
     <plugins>
       <plugin>
@@ -72,68 +73,53 @@
         </exclusion>
       </exclusions>
     </dependency>
-    <!-- Module Dependencies -->
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-common</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-deployment</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-deploy-config</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee-builder</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee-schema</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-naming</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
   </dependencies>
-
 </project>

Modified: geronimo/trunk/modules/naming/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/naming/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/naming/pom.xml (original)
+++ geronimo/trunk/modules/naming/pom.xml Thu Mar  9 11:21:14 2006
@@ -30,42 +30,24 @@
   <version>${geronimoVersion}</version>
   <packaging>jar</packaging>
   <name>Geronimo :: Naming</name>
-  
-  <build>
-    <testResources>
-      <testResource>
-        <directory>src/test-data</directory>
-      </testResource>
-    </testResources>
-  </build>
-  
-  <!-- ============ -->
-  <!-- Dependencies -->
-  <!-- ============ -->
-
+  <description>Geronimo Naming</description>
   <dependencies>
-
-    <!-- Module Dependencies -->
     <!-- only for ComponentContextInterceptor -->
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-interceptor</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
   </dependencies>
 </project>

Modified: geronimo/trunk/modules/scripts/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/scripts/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/scripts/pom.xml (original)
+++ geronimo/trunk/modules/scripts/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,4 +29,5 @@
   <artifactId>geronimo-scripts</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Scripts</name>
+  <description>Scripts</description>
 </project>

Modified: geronimo/trunk/modules/session/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/session/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/session/pom.xml (original)
+++ geronimo/trunk/modules/session/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,6 +29,7 @@
   <artifactId>geronimo-session</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Session</name>
+  <description>Geronimo Session</description>
   <dependencies>
     <dependency>
       <groupId>commons-logging</groupId>

Modified: geronimo/trunk/modules/spring/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/spring/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/spring/pom.xml (original)
+++ geronimo/trunk/modules/spring/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,6 +29,7 @@
   <artifactId>geronimo-spring</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Spring</name>
+  <description>Spring Framework wrappers for Geronimo components</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo</groupId>
@@ -38,21 +39,17 @@
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
     <dependency>
       <groupId>springframework</groupId>
       <artifactId>spring</artifactId>
     </dependency>
-
   </dependencies>
 </project>

Modified: geronimo/trunk/modules/test-ddbean/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/test-ddbean/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/test-ddbean/pom.xml (original)
+++ geronimo/trunk/modules/test-ddbean/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,6 +29,7 @@
   <artifactId>geronimo-test-ddbean</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Test :: DDBeans</name>
+  <description>Geronimo Test DDBeans</description>
   <dependencies>
     <dependency>
       <groupId>xmlbeans</groupId>

Modified: geronimo/trunk/modules/timer/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/timer/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/timer/pom.xml (original)
+++ geronimo/trunk/modules/timer/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,63 +29,51 @@
   <artifactId>geronimo-timer</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Timer</name>
+  <description>Geronimo Timer</description>
   <dependencies>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-connector</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-core</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-transaction</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
     </dependency>
-
-
-    <!-- Thirdparty -->
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
     <!-- jdbc timer WorkerPersistence -->
     <dependency>
       <groupId>xstream</groupId>
       <artifactId>xstream</artifactId>
     </dependency>
-
     <dependency>
       <!--License is at http://www.extreme.indiana.edu/viewcvs/~checkout~/XPP3/java/LICENSE.txt -->
       <!-- it is modified BSD -->
       <groupId>xpp3</groupId>
       <artifactId>xpp3</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.derby</groupId>
       <artifactId>derby</artifactId>
@@ -94,7 +82,6 @@
       <groupId>concurrent</groupId>
       <artifactId>concurrent</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>

Modified: geronimo/trunk/modules/transaction/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/transaction/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/transaction/pom.xml (original)
+++ geronimo/trunk/modules/transaction/pom.xml Thu Mar  9 11:21:14 2006
@@ -30,70 +30,50 @@
   <version>${geronimoVersion}</version>
   <packaging>jar</packaging>
   <name>Geronimo :: Transaction</name>
-
-  <!-- ============ -->
-  <!-- Dependencies -->
-  <!-- ============ -->
-
+  <description>Geronimo Transaction</description>
   <dependencies>
-    <!-- Module Dependencies -->
     <!-- temp, for ServerInfo. Remove when it is moved to Kernel-->
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-system</artifactId>
     </dependency>
-
     <!-- thread pool, for timer -->
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-core</artifactId>
     </dependency>
-
-
-    <!-- actual tx dependencies -->
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-ejb_2.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
     </dependency>
-
-    <!-- Thirdparty -->
-
     <dependency>
       <groupId>concurrent</groupId>
       <artifactId>concurrent</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
-    <!--compiled by David Jencks, but tagged version-->
     <dependency>
       <groupId>howl</groupId>
       <artifactId>howl-logger</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>

Modified: geronimo/trunk/modules/util/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/util/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/util/pom.xml (original)
+++ geronimo/trunk/modules/util/pom.xml Thu Mar  9 11:21:14 2006
@@ -28,28 +28,20 @@
   <groupId>org.apache.geronimo</groupId>
   <artifactId>geronimo-util</artifactId>
   <version>${geronimoVersion}</version>
-  <packaging>jar</packaging>
   <name>Geronimo :: Util</name>
-  <!-- ============ -->
-  <!-- Dependencies -->
-  <!-- ============ -->
-
+  <description>Geronimo Util</description>
   <dependencies>
-    <!-- Module Dependencies -->
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
   </dependencies>
 </project>

Modified: geronimo/trunk/modules/web-builder/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/web-builder/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/web-builder/pom.xml (original)
+++ geronimo/trunk/modules/web-builder/pom.xml Thu Mar  9 11:21:14 2006
@@ -28,6 +28,7 @@
   <artifactId>geronimo-web-builder</artifactId>
   <name>Geronimo :: Web :: Builder</name>
   <version>${geronimoVersion}</version>
+  <description>Geronimo Web Container Deployer</description>
   <build>
     <plugins>
       <plugin>
@@ -76,61 +77,49 @@
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-common</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-deploy-config</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee-builder</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-security-builder</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-service-builder</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-naming-builder</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee-schema</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-test-ddbean</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-deployment</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
     </dependency>
-
   </dependencies>
 </project>

Modified: geronimo/trunk/modules/webservices/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/webservices/pom.xml?rev=384585&r1=384584&r2=384585&view=diff
==============================================================================
--- geronimo/trunk/modules/webservices/pom.xml (original)
+++ geronimo/trunk/modules/webservices/pom.xml Thu Mar  9 11:21:14 2006
@@ -29,80 +29,64 @@
   <artifactId>geronimo-webservices</artifactId>
   <version>${geronimoVersion}</version>
   <name>Geronimo :: Web Services</name>
+  <description>Geronimo Web Services</description>
   <dependencies>
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-common</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-kernel</artifactId>
     </dependency>
-
     <dependency>
         <groupId>org.apache.geronimo</groupId>
         <artifactId>geronimo-interceptor</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo</groupId>
       <artifactId>geronimo-j2ee</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-qname_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jaxrpc_1.1_spec</artifactId>
     </dependency>
-
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-servlet_2.4_spec</artifactId>
     </dependency>
-
-    <!-- Thirdparty -->
-
     <dependency>
       <groupId>cglib</groupId>
       <artifactId>cglib-nodep</artifactId>
     </dependency>
-
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
-
     <dependency>
       <groupId>castor</groupId>
       <artifactId>castor</artifactId>
     </dependency>
-
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
     </dependency>
-
     <dependency>
       <groupId>xfire</groupId>
       <artifactId>xfire</artifactId>
     </dependency>
-
     <dependency>
       <groupId>xfire</groupId>
       <artifactId>xfire-java</artifactId>
     </dependency>
-
     <dependency>
       <groupId>wsdl4j</groupId>
       <artifactId>wsdl4j</artifactId>
     </dependency>
-
-    <!-- JAXR (Apache Scout) -->
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jaxr_1.0_spec</artifactId>