dion 2003/10/28 14:28:39
Modified: src/plugins-build/test plugin.jelly
Log:
Start using tag instead of ${pom.getPluginContext(....)}
Revision Changes Path
1.22 +2 -3 maven/src/plugins-build/test/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/test/plugin.jelly,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- plugin.jelly 3 Oct 2003 05:33:39 -0000 1.21
+++ plugin.jelly 28 Oct 2003 22:28:39 -0000 1.22
@@ -260,9 +260,8 @@
<j:forEach var="someProperty" items="${listOfProperties}">
<sysproperty key="${someProperty}"
value="${context.getVariable(someProperty)}"/>
</j:forEach>
- <j:set var="jvmargs"
-
value="${pom.getPluginContext('maven-test-plugin').getVariable('maven.junit.jvmargs')}"/>
- <j:if test="$">
+ <maven:pluginVar var="jvmargs" plugin="maven-test-plugin"
property="maven.junit.jvmargs" />
+ <j:if test="${!empty(jvmArgs)}">
<jvmarg line="${jvmargs}"/>
</j:if>
<formatter type="xml"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]