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/06/11 23:03:09 UTC

svn commit: r666836 - in /ant/ivy/core/trunk: CHANGES.txt build.xml

Author: maartenc
Date: Wed Jun 11 14:03:09 2008
New Revision: 666836

URL: http://svn.apache.org/viewvc?rev=666836&view=rev
Log:
FIX: Ivy build system: fix build.xml to allow "ant coverage-report" behind a proxy (IVY-832)

Modified:
    ant/ivy/core/trunk/CHANGES.txt
    ant/ivy/core/trunk/build.xml

Modified: ant/ivy/core/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=666836&r1=666835&r2=666836&view=diff
==============================================================================
--- ant/ivy/core/trunk/CHANGES.txt (original)
+++ ant/ivy/core/trunk/CHANGES.txt Wed Jun 11 14:03:09 2008
@@ -85,6 +85,7 @@
 - IMPROVEMENT: Change allownomd and skipbuildwithoutivy into a more semantically correct name (IVY-297)
 - IMPROVEMENT: Smarter determination if an expression is exact or not for RegexpPatternMatcher and GlobPatternMatcher
 
+- FIX: Ivy build system: fix build.xml to allow "ant coverage-report" behind a proxy (IVY-832)
 - FIX: NPE in AbstractResolver.exists() if a resource cannot be found (IVY-831)
 - FIX: Ivy distribution jars contains duplicate entries (IVY-828)
 - FIX: ivy:report will generate an HTML file that references non-existent ivy-report.css (IVY-826)

Modified: ant/ivy/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/build.xml?rev=666836&r1=666835&r2=666836&view=diff
==============================================================================
--- ant/ivy/core/trunk/build.xml (original)
+++ ant/ivy/core/trunk/build.xml Wed Jun 11 14:03:09 2008
@@ -335,8 +335,8 @@
             artifactsPattern="${artifacts.build.dir}/[type]s/[artifact].[ext]" 
             forcedeliver="true" />
     </target>
-    
-    <!-- =================================================================
+
+	<!-- =================================================================
          TESTS
          ================================================================= -->
     <target name="build-custom-resolver-jar" depends="jar">
@@ -438,6 +438,11 @@
             <classpath>
                 <path refid="test.classpath" />
             </classpath>
+        	
+        	<!-- pass the proxy properties to the forked junit process to use correct proxy -->
+        	<syspropertyset>
+        		<propertyref prefix="http" />
+       		</syspropertyset>
             <jvmarg value="-Demma.coverage.out.file=${coverage.dir}/coverage.emma" />
             <jvmarg value="-Demma.coverage.out.merge=true" />