Author: ltheussl
Date: Sun Mar 26 12:07:38 2006
New Revision: 388952
URL: http://svn.apache.org/viewcvs?rev=388952&view=rev
Log:
Work around jelly bug in Maven 1.0.X
Modified:
maven/maven-1/plugins/trunk/test/plugin.jelly
Modified: maven/maven-1/plugins/trunk/test/plugin.jelly
URL:
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/plugin.jelly?rev=388952&r1=388951&r2=388952&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/test/plugin.jelly Sun Mar 26 12:07:38 2006
@@ -204,7 +204,8 @@
</batchtest>
</junit>
- <j:if test="${maven.test.failure}">
+ <j:set var="_testfailure" value="${maven.test.failure}"/>
+ <j:if test="${_testfailure}">
<echo>
==========================================================
@@ -344,7 +345,8 @@
</junit>
- <j:if test="${maven.test.failure}">
+ <j:set var="_testfailure" value="${maven.test.failure}"/>
+ <j:if test="${_testfailure}">
<echo>
==========================================================
@@ -472,7 +474,8 @@
</junit>
- <j:if test="${maven.test.failure}">
+ <j:set var="_testfailure" value="${maven.test.failure}"/>
+ <j:if test="${_testfailure}">
<echo>
==========================================================