You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by fo...@apache.org on 2006/03/30 04:35:41 UTC

svn commit: r389966 - /incubator/activemq/trunk/activemq-web/pom.xml

Author: foconer
Date: Wed Mar 29 18:35:39 2006
New Revision: 389966

URL: http://svn.apache.org/viewcvs?rev=389966&view=rev
Log:
Organized and added required dependencies to be able to build in maven 2.

Modified:
    incubator/activemq/trunk/activemq-web/pom.xml

Modified: incubator/activemq/trunk/activemq-web/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-web/pom.xml?rev=389966&r1=389965&r2=389966&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-web/pom.xml (original)
+++ incubator/activemq/trunk/activemq-web/pom.xml Wed Mar 29 18:35:39 2006
@@ -36,6 +36,7 @@
   <description>Web Connector for REST API and Streamlets support</description>
   
   <dependencies>
+  
     <!-- activemq -->
     <dependency>
       <groupId>${pom.groupId}</groupId>
@@ -45,7 +46,8 @@
       <groupId>${pom.groupId}</groupId>
       <artifactId>activemq-core-test</artifactId>
     </dependency>
-   
+    
+    <!-- Optional used fo in-web container testing -->
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-jsp_2.0_spec</artifactId>
@@ -56,14 +58,19 @@
         </exclusion>
       </exclusions>
     </dependency>
+        
     <dependency>
-      <groupId>org.apache.xbean</groupId>
-      <artifactId>xbean-spring</artifactId>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
     </dependency>
+    
+    <!-- Rome RSS Reader -->
     <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring</artifactId>
+      <groupId>rome</groupId> 
+      <artifactId>rome</artifactId>
     </dependency>
+    
+    <!-- web container -->
     <dependency>
       <groupId>jetty</groupId>
       <artifactId>servlet-api</artifactId>
@@ -73,12 +80,36 @@
       <artifactId>jetty</artifactId>
     </dependency>
     
+    <!-- For Spring servlet -->
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring</artifactId>
+    </dependency>
+    
+    <!--  for custom XML parsing -->
+    <dependency>
+      <groupId>org.apache.xbean</groupId>
+      <artifactId>xbean-spring</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>xmlpull</groupId>
+      <artifactId>xmlpull</artifactId>
+    </dependency>    
+
+    <dependency>
+      <groupId>xstream</groupId>
+      <artifactId>xstream</artifactId>
+    </dependency>    
+    
     <!-- used for testing -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+    
+    <!-- Derby SQL DB used for testing JDBC message store -->
     <dependency>
       <groupId>org.apache.derby</groupId>
       <artifactId>derby</artifactId>