You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2011/03/21 04:21:01 UTC

svn commit: r1083667 - in /incubator/ace/trunk: ace-integrationtests/pom.xml ace-launcher/pom.xml

Author: marrs
Date: Mon Mar 21 03:21:01 2011
New Revision: 1083667

URL: http://svn.apache.org/viewvc?rev=1083667&view=rev
Log:
Excluded a dependency on foundation because we do not want that to end up on the compile classpath and shadow the JRE classes. It causes strange errors in Eclipse projects.

Modified:
    incubator/ace/trunk/ace-integrationtests/pom.xml
    incubator/ace/trunk/ace-launcher/pom.xml

Modified: incubator/ace/trunk/ace-integrationtests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-integrationtests/pom.xml?rev=1083667&r1=1083666&r2=1083667&view=diff
==============================================================================
--- incubator/ace/trunk/ace-integrationtests/pom.xml (original)
+++ incubator/ace/trunk/ace-integrationtests/pom.xml Mon Mar 21 03:21:01 2011
@@ -74,6 +74,12 @@
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.prefs</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>org.osgi.foundation</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>

Modified: incubator/ace/trunk/ace-launcher/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-launcher/pom.xml?rev=1083667&r1=1083666&r2=1083667&view=diff
==============================================================================
--- incubator/ace/trunk/ace-launcher/pom.xml (original)
+++ incubator/ace/trunk/ace-launcher/pom.xml Mon Mar 21 03:21:01 2011
@@ -64,6 +64,12 @@
         <dependency>
             <groupId>org.apache.ace</groupId>
             <artifactId>org.apache.ace.managementagent</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>org.osgi.foundation</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>