From: Siegfried G. <wd...@us...> - 2005-02-15 09:31:22
|
wdsgoe 05/02/15 01:31:16 Modified: javaapp plugin.jelly Log: Applied patch 1121795 from Frank Cornelis fixing broken javaapp:run Revision Changes Path 1.13 +3 -3 maven-plugins/javaapp/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/javaapp/plugin.jelly,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- plugin.jelly 19 Nov 2004 16:44:42 -0000 1.12 +++ plugin.jelly 15 Feb 2005 09:31:15 -0000 1.13 @@ -277,12 +277,12 @@ <!-- Don't know how to split the thing to use <sysproperty> instead --> <u:tokenize var="listOfJvmArgs" delim=" ">${maven.javaapp.jvmargs}</u:tokenize> <j:forEach var="somejvmarg" items="${listOfJvmArgs}"> - <j:jvmarg value="${somejvmarg}"/> + <ant:jvmarg value="${somejvmarg}"/> </j:forEach> <j:forEach var="someProperty" items="${listOfProperties}"> - <j:jvmarg value="${someProperty}"/> + <ant:jvmarg value="${someProperty}"/> </j:forEach> - <j:arg line="${maven.javaapp.cmdline}"/> + <ant:arg line="${maven.javaapp.cmdline}"/> </ant:java> </goal> |