[exo-jcr-commits] exo-jcr SVN: r2340 - in jcr/trunk: exo.jcr.component.core and 5 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Apr 28 09:32:21 EDT 2010


Author: dkatayev
Date: 2010-04-28 09:32:20 -0400 (Wed, 28 Apr 2010)
New Revision: 2340

Modified:
   jcr/trunk/exo.jcr.component.core/pom.xml
   jcr/trunk/exo.jcr.component.ext/pom.xml
   jcr/trunk/exo.jcr.component.statistics/pom.xml
   jcr/trunk/exo.jcr.component.webdav/pom.xml
   jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
   jcr/trunk/exo.jcr.framework.command/pom.xml
   jcr/trunk/pom.xml
Log:
EXOJCR-691 missing dependencies fixed

Modified: jcr/trunk/exo.jcr.component.core/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.core/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.component.core/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -68,6 +68,11 @@
       <dependency>
          <groupId>org.exoplatform.core</groupId>
          <artifactId>exo.core.component.security.core</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.exoplatform.ws</groupId>
+        <artifactId>exo.ws.commons</artifactId>
+        <scope>test</scope>
       </dependency>
       <dependency>
          <groupId>org.exoplatform.jcr</groupId>
@@ -148,7 +153,27 @@
       <dependency>
          <groupId>commons-collections</groupId>
          <artifactId>commons-collections</artifactId>
-      </dependency>
+      </dependency>
+      <dependency>
+        <groupId>commons-beanutils</groupId>
+        <artifactId>commons-beanutils</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>jgroups</groupId>
+        <artifactId>jgroups</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>javax.xml.stream</groupId>
+        <artifactId>stax-api</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>xpp3</groupId>
+        <artifactId>xpp3</artifactId>
+      </dependency>
       <dependency>
          <groupId>jboss.jbossts</groupId>
          <artifactId>jbossjts</artifactId>
@@ -190,7 +215,8 @@
       </dependency>
       <dependency>
          <groupId>org.slf4j</groupId>
-         <artifactId>slf4j-log4j12</artifactId>
+         <artifactId>slf4j-log4j12</artifactId>
+         <scope>test</scope>
       </dependency>
       <!-- ===== Databases JDBC support for tests ===== -->
       <dependency>

Modified: jcr/trunk/exo.jcr.component.ext/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.ext/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.component.ext/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -90,17 +90,14 @@
     </dependency>
     <dependency>
        <groupId>org.slf4j</groupId>
-       <artifactId>slf4j-log4j12</artifactId>
+       <artifactId>slf4j-log4j12</artifactId>
+       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>javax.annotation</groupId>
       <artifactId>jsr250-api</artifactId>
     </dependency>
     <dependency>
-      <groupId>stax</groupId>
-      <artifactId>stax-api</artifactId>
-    </dependency>
-    <dependency>
       <groupId>commons-chain</groupId>
       <artifactId>commons-chain</artifactId>
     </dependency>
@@ -121,13 +118,18 @@
       <artifactId>picocontainer</artifactId>
     </dependency>
     <dependency>
-      <groupId>jtidy</groupId>
-      <artifactId>jtidy</artifactId>
-    </dependency>
-    <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
-    </dependency>
+    </dependency>
+    <dependency>
+      <groupId>javax.xml.stream</groupId>
+      <artifactId>stax-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+
     <dependency>
       <groupId>hsqldb</groupId>
       <artifactId>hsqldb</artifactId>

Modified: jcr/trunk/exo.jcr.component.statistics/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.statistics/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.component.statistics/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -29,11 +29,20 @@
   <artifactId>exo.jcr.component.statistics</artifactId>
   <name>eXo JCR :: Component :: Statistics Provider</name>
   <description>eXo JCR Statistics</description>
-  <dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.exoplatform.kernel</groupId>
+      <artifactId>exo.kernel.commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.exoplatform.kernel</groupId>
+      <artifactId>exo.kernel.container</artifactId>
+    </dependency>
     <dependency>
       <groupId>org.exoplatform.jcr</groupId>
       <artifactId>exo.jcr.component.core</artifactId>
-    </dependency>
+    </dependency>
+    
     <dependency>
       <groupId>org.aspectj</groupId>
       <artifactId>aspectjrt</artifactId>

Modified: jcr/trunk/exo.jcr.component.webdav/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.component.webdav/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.component.webdav/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -74,13 +74,21 @@
       <groupId>javax.jcr</groupId>
       <artifactId>jcr</artifactId>
     </dependency>
-    <dependency>
+    <!-- dependency>
       <groupId>stax</groupId>
       <artifactId>stax-api</artifactId>
-    </dependency>
+    </dependency -->
     <dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.xml.stream</groupId>
+      <artifactId>stax-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xpp3</groupId>
+      <artifactId>xpp3</artifactId>
     </dependency>
     <dependency>
       <groupId>jtidy</groupId>
@@ -88,7 +96,8 @@
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>hsqldb</groupId>

Modified: jcr/trunk/exo.jcr.connectors.localadapter/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.connectors.localadapter/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.connectors.localadapter/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -98,7 +98,7 @@
     </dependency>
     <dependency>
       <groupId>javax.resource</groupId>
-      <artifactId>connector</artifactId>
+      <artifactId>connector</artifactId>
     </dependency>
     <dependency>
       <groupId>javax.transaction</groupId>
@@ -106,8 +106,8 @@
     </dependency>
     <dependency>
       <groupId>javax.resource</groupId>
-      <artifactId>connector-api</artifactId>
-      <version>1.5</version>
+      <artifactId>connector-api</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>org.exoplatform.kernel</groupId>

Modified: jcr/trunk/exo.jcr.framework.command/pom.xml
===================================================================
--- jcr/trunk/exo.jcr.framework.command/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/exo.jcr.framework.command/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -65,16 +65,13 @@
          <artifactId>commons-chain</artifactId>
       </dependency>
       <dependency>
-         <groupId>jtidy</groupId>
-         <artifactId>jtidy</artifactId>
-      </dependency>
-      <dependency>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
       </dependency>
       <dependency>
          <groupId>org.slf4j</groupId>
-         <artifactId>slf4j-log4j12</artifactId>
+         <artifactId>slf4j-log4j12</artifactId>
+         <scope>test</scope>
       </dependency>
       <dependency>
          <groupId>hsqldb</groupId>
@@ -82,4 +79,4 @@
          <scope>test</scope>
       </dependency>
    </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: jcr/trunk/pom.xml
===================================================================
--- jcr/trunk/pom.xml	2010-04-28 13:28:32 UTC (rev 2339)
+++ jcr/trunk/pom.xml	2010-04-28 13:32:20 UTC (rev 2340)
@@ -294,7 +294,27 @@
         <groupId>commons-pool</groupId>
         <artifactId>commons-pool</artifactId>
         <version>1.5.4</version>
-      </dependency>
+      </dependency>
+      <dependency>
+        <groupId>commons-beanutils</groupId>
+        <artifactId>commons-beanutils</artifactId>
+        <version>1.8.0</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.1</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.xml.stream</groupId>
+        <artifactId>stax-api</artifactId>
+        <version>1.0</version>
+      </dependency>   
+      <dependency>
+        <groupId>xpp3</groupId>
+        <artifactId>xpp3</artifactId>
+        <version>1.1.3.4.O</version>
+      </dependency>         
       <dependency>
         <groupId>concurrent</groupId>
         <artifactId>concurrent</artifactId>



More information about the exo-jcr-commits mailing list