You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by gr...@apache.org on 2012/11/29 09:28:37 UTC

svn commit: r1415080 - in /incubator/onami/trunk/logging: core/pom.xml pom.xml testframework/pom.xml

Author: grobmeier
Date: Thu Nov 29 08:28:36 2012
New Revision: 1415080

URL: http://svn.apache.org/viewvc?rev=1415080&view=rev
Log:
moved guice inject dependency from core/testfw to parent, otherwise  logging bridges won't compile since they are all inheriting from onami-logging-parent

Modified:
    incubator/onami/trunk/logging/core/pom.xml
    incubator/onami/trunk/logging/pom.xml
    incubator/onami/trunk/logging/testframework/pom.xml

Modified: incubator/onami/trunk/logging/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/logging/core/pom.xml?rev=1415080&r1=1415079&r2=1415080&view=diff
==============================================================================
--- incubator/onami/trunk/logging/core/pom.xml (original)
+++ incubator/onami/trunk/logging/core/pom.xml Thu Nov 29 08:28:36 2012
@@ -35,13 +35,6 @@
     <site.skip>true</site.skip>
   </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>com.google.inject</groupId>
-      <artifactId>guice</artifactId>
-    </dependency>
-  </dependencies>
-
   <build>
     <resources>
       <resource>

Modified: incubator/onami/trunk/logging/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/logging/pom.xml?rev=1415080&r1=1415079&r2=1415080&view=diff
==============================================================================
--- incubator/onami/trunk/logging/pom.xml (original)
+++ incubator/onami/trunk/logging/pom.xml Thu Nov 29 08:28:36 2012
@@ -71,6 +71,10 @@
 
   <dependencies>
     <dependency>
+        <groupId>com.google.inject</groupId>
+        <artifactId>guice</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.testng</groupId>
       <artifactId>testng</artifactId>
       <scope>test</scope>

Modified: incubator/onami/trunk/logging/testframework/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/logging/testframework/pom.xml?rev=1415080&r1=1415079&r2=1415080&view=diff
==============================================================================
--- incubator/onami/trunk/logging/testframework/pom.xml (original)
+++ incubator/onami/trunk/logging/testframework/pom.xml Thu Nov 29 08:28:36 2012
@@ -33,11 +33,6 @@
 
   <dependencies>
     <dependency>
-      <groupId>com.google.inject</groupId>
-      <artifactId>guice</artifactId>
-    </dependency>
-
-    <dependency>
       <groupId>${project.parent.groupId}</groupId>
       <artifactId>onami-logging-core</artifactId>
       <version>${project.parent.version}</version>