You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2008/04/08 23:10:00 UTC

svn commit: r646073 - in /ant/ivy/core/trunk/test: java/org/apache/ivy/core/resolve/ResolveTest.java repositories/m2/ivysettings.xml

Author: maartenc
Date: Tue Apr  8 14:09:59 2008
New Revision: 646073

URL: http://svn.apache.org/viewvc?rev=646073&view=rev
Log:
New attempt to make the tests pass on both unix and windows.

Modified:
    ant/ivy/core/trunk/test/java/org/apache/ivy/core/resolve/ResolveTest.java
    ant/ivy/core/trunk/test/repositories/m2/ivysettings.xml

Modified: ant/ivy/core/trunk/test/java/org/apache/ivy/core/resolve/ResolveTest.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/java/org/apache/ivy/core/resolve/ResolveTest.java?rev=646073&r1=646072&r2=646073&view=diff
==============================================================================
--- ant/ivy/core/trunk/test/java/org/apache/ivy/core/resolve/ResolveTest.java (original)
+++ ant/ivy/core/trunk/test/java/org/apache/ivy/core/resolve/ResolveTest.java Tue Apr  8 14:09:59 2008
@@ -3332,7 +3332,7 @@
     public void testResolveMaven2() throws Exception {
         // test3 depends on test2 which depends on test
         Ivy ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/m2/org/apache/test3/1.0/test3-1.0.pom").toURL(),
             getResolveOptions(new String[] {"test"}));
@@ -3360,7 +3360,7 @@
         //Same as testResolveMaven2 but with a relocated module pointing to the module
         //used in testResolveMaven2.
         ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ivy.pushContext();
         try {        
             ResolveReport report = ivy.resolve(new File(
@@ -3388,7 +3388,7 @@
         //Same as testResolveMaven2 but with a relocated module pointing to the module
         //used in testResolveMaven2.
         ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ivy.pushContext();
         try {        
             ResolveReport report = ivy.resolve(new File(
@@ -3414,7 +3414,7 @@
 
     public void testResolveVesionRelocationChainedWithGroupRelocation() throws Exception {
         ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ivy.pushContext();
         try {        
             ResolveReport report = ivy.resolve(new File(
@@ -3440,7 +3440,7 @@
 
     public void testResolveTransitivelyToRelocatedPom() throws Exception {
         ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ivy.pushContext();
         try {        
             ResolveReport report = ivy.resolve(new File(
@@ -3466,7 +3466,7 @@
 
     public void testResolveTransitivelyToPomRelocatedToNewVersion() throws Exception {
         ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ivy.pushContext();
         try {        
             ResolveReport report = ivy.resolve(new File(
@@ -3495,7 +3495,7 @@
         // test case for IVY-418
         // test-classifier depends on test-classified with classifier asl
         Ivy ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/m2/org/apache/test-classifier/1.0/test-classifier-1.0.pom")
                 .toURL(), getResolveOptions(new String[] {"*"}));
@@ -3517,7 +3517,7 @@
 
     public void testResolveMaven2WithVersionProperty() throws Exception {
         Ivy ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/m2/org/apache/test-version/1.0/test-version-1.0.pom").toURL(),
             getResolveOptions(new String[] {"*"}));
@@ -3679,7 +3679,7 @@
         // here we test maven SNAPSHOT versions handling, 
         // with m2 snapshotRepository/uniqueVersion set to true
         Ivy ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/m2/org/apache/test4/1.0/test4-1.0.pom")
                 .toURL(), getResolveOptions(new String[] {"*"}));
@@ -3698,7 +3698,7 @@
         // here we test maven SNAPSHOT versions handling, 
         // without m2 snapshotRepository/uniqueVersion set to true
         Ivy ivy = new Ivy();
-        ivy.configure(new File("test/repositories/m2/ivysettings.xml"));
+        ivy.configure(new File("test/repositories/m2/ivysettings.xml").toURL());
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/m2/org/apache/test4/1.1/test4-1.1.pom")
                 .toURL(), getResolveOptions(new String[] {"*"}));

Modified: ant/ivy/core/trunk/test/repositories/m2/ivysettings.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/m2/ivysettings.xml?rev=646073&r1=646072&r2=646073&view=diff
==============================================================================
--- ant/ivy/core/trunk/test/repositories/m2/ivysettings.xml (original)
+++ ant/ivy/core/trunk/test/repositories/m2/ivysettings.xml Tue Apr  8 14:09:59 2008
@@ -20,6 +20,6 @@
 	<settings defaultCache="build/cache" defaultResolver="m2"/>
 	<resolvers>
 		<ibiblio name="m2" m2compatible="true" useMavenMetadata="true" 
-		         root="file:/${ivy.settings.dir}" />
+		         root="${ivy.settings.dir}" />
 	</resolvers>
 </ivysettings>