You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by cb...@apache.org on 2009/10/07 04:02:41 UTC

svn commit: r822549 - in /ibatis/java/ibatis-3/trunk: ibatis-3-compat/pom.xml ibatis-3-core/pom.xml

Author: cbegin
Date: Wed Oct  7 02:02:41 2009
New Revision: 822549

URL: http://svn.apache.org/viewvc?rev=822549&view=rev
Log:
ibatis-670 Ibatis depends on log4j, commons-logging and cglib -- fixed

Modified:
    ibatis/java/ibatis-3/trunk/ibatis-3-compat/pom.xml
    ibatis/java/ibatis-3/trunk/ibatis-3-core/pom.xml

Modified: ibatis/java/ibatis-3/trunk/ibatis-3-compat/pom.xml
URL: http://svn.apache.org/viewvc/ibatis/java/ibatis-3/trunk/ibatis-3-compat/pom.xml?rev=822549&r1=822548&r2=822549&view=diff
==============================================================================
--- ibatis/java/ibatis-3/trunk/ibatis-3-compat/pom.xml (original)
+++ ibatis/java/ibatis-3/trunk/ibatis-3-compat/pom.xml Wed Oct  7 02:02:41 2009
@@ -63,6 +63,24 @@
     </testResources>
   </build>
   <dependencies>
+        <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.13</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.1.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib</artifactId>
+      <version>2.1_3</version>
+      <scope>provided</scope>
+    </dependency>
     <dependency>
       <groupId>org.apache.ibatis</groupId>
       <artifactId>ibatis-3-core</artifactId>
@@ -73,13 +91,13 @@
       <groupId>commons-dbcp</groupId>
       <artifactId>commons-dbcp</artifactId>
       <version>1.2.1</version>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>javax.transaction</groupId>
       <artifactId>jta</artifactId>
       <version>1.0.1B</version>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <!-- Test Dependencies -->
     <dependency>

Modified: ibatis/java/ibatis-3/trunk/ibatis-3-core/pom.xml
URL: http://svn.apache.org/viewvc/ibatis/java/ibatis-3/trunk/ibatis-3-core/pom.xml?rev=822549&r1=822548&r2=822549&view=diff
==============================================================================
--- ibatis/java/ibatis-3/trunk/ibatis-3-core/pom.xml (original)
+++ ibatis/java/ibatis-3/trunk/ibatis-3-core/pom.xml Wed Oct  7 02:02:41 2009
@@ -67,19 +67,19 @@
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
       <version>1.2.13</version>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
       <version>1.1.1</version>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>cglib</groupId>
       <artifactId>cglib</artifactId>
       <version>2.1_3</version>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <!-- Test dependencies -->
     <dependency>