Author: simonetripodi
Date: Thu Mar  1 21:48:10 2012
New Revision: 1295922

URL: http://svn.apache.org/viewvc?rev=1295922&view=rev
Log:
managed commons-logging dependency, it prevents:
 * be added as a dependency in the configuration module (not needed ad compile 
time, already managed by digester as transitive dependency)
 * be imported in the distribution package

Modified:
    commons/proper/chain/trunk/core/pom.xml
    commons/proper/chain/trunk/pom.xml
    commons/proper/chain/trunk/web/pom.xml

Modified: commons/proper/chain/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/pom.xml?rev=1295922&r1=1295921&r2=1295922&view=diff
==============================================================================
--- commons/proper/chain/trunk/core/pom.xml (original)
+++ commons/proper/chain/trunk/core/pom.xml Thu Mar  1 21:48:10 2012
@@ -32,6 +32,13 @@
 
   <name>Apache Commons Chain :: Core</name>
 
+  <dependencies>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+    </dependency>
+  </dependencies>
+
   <build>
     <resources>
       <resource>

Modified: commons/proper/chain/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=1295922&r1=1295921&r2=1295922&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Thu Mar  1 21:48:10 2012
@@ -124,15 +124,17 @@
     <commons.osgi.dynamicImport>javax.portlet</commons.osgi.dynamicImport>
   </properties>
 
-
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.1.1</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
   <dependencies>
     <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-      <version>1.1.1</version>
-    </dependency>
-
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>4.10</version>

Modified: commons/proper/chain/trunk/web/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/web/pom.xml?rev=1295922&r1=1295921&r2=1295922&view=diff
==============================================================================
--- commons/proper/chain/trunk/web/pom.xml (original)
+++ commons/proper/chain/trunk/web/pom.xml Thu Mar  1 21:48:10 2012
@@ -34,6 +34,11 @@
 
   <dependencies>
     <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+    </dependency>
+
+    <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>commons-chain2</artifactId>
       <version>${project.parent.version}</version>


Reply via email to