From: Eric P. <de...@us...> - 2005-03-02 16:49:36
|
dep4b 05/03/02 08:49:30 Modified: webtest plugin.jelly Log: fix plugin name in registering plugin Revision Changes Path 1.12 +10 -10 maven-plugins/webtest/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/plugin.jelly,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- plugin.jelly 19 Nov 2004 13:39:07 -0000 1.11 +++ plugin.jelly 2 Mar 2005 16:49:29 -0000 1.12 @@ -14,9 +14,9 @@ <goal name="maven-webtest-plugin:register"> <util:available file="${maven.webtest.src}"> <doc:registerReport name="Canoo WebTest Report" - pluginName="webtest" + pluginName="maven-webtest-plugin" description="Canoo WebTest Report." - link="maven-webtest-report"/> + link="webtest-report"/> </util:available> </goal> @@ -94,16 +94,16 @@ <goal name="webtest:test" description="Runs the Canoo webtest scripts"> - <!-- populate any missing system properties --> - <util:tokenize var="listOfProperties" delim=" ">${maven.webtest.sysproperties}</util:tokenize> + <!-- populate any missing system properties --> + <util:tokenize var="listOfProperties" delim=" ">${maven.webtest.sysproperties}</util:tokenize> <j:forEach var="someProperty" items="${listOfProperties}"> - <j:set var="somePropertyValue" value="${context.getVariable(someProperty)}"/> + <j:set var="somePropertyValue" value="${context.getVariable(someProperty)}"/> - <j:if test="${empty(somePropertyValue)}"> - <i:ask question="What is the ${someProperty} to be used? (-D${someProperty}={value} to skip check)" - answer="${someProperty}"/> - </j:if> - <maven:param-check value="${context.getVariable(someProperty)}" fail="true" message="'${someProperty}' must be specified"/> + <j:if test="${empty(somePropertyValue)}"> + <i:ask question="What is the ${someProperty} to be used? (-D${someProperty}={value} to skip check)" + answer="${someProperty}"/> + </j:if> + <maven:param-check value="${context.getVariable(someProperty)}" fail="true" message="'${someProperty}' must be specified"/> </j:forEach> <!-- Create the result path --> |