From: Siegfried G. <wd...@us...> - 2002-12-27 15:26:58
|
wdsgoe 02/12/27 07:26:57 Modified: webtest plugin.jelly Log: Added maven.webtest.target and maven.webtest.ant.options Revision Changes Path 1.2 +5 -1 maven-plugins/webtest/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/plugin.jelly,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.jelly 16 Dec 2002 11:34:03 -0000 1.1 +++ plugin.jelly 27 Dec 2002 15:26:57 -0000 1.2 @@ -10,17 +10,19 @@ <j:set var="testCaseName" value="${maven.webtest.file}"/> <!-- if no webtest defined skip the processing --> <j:if test="${!testCaseName.equals('noop')}"> - <echo>This product includes software developed by Canoo Engineering AG (http://www.canoo.com/)</echo> <attainGoal name="webtest:clean"/> + <attainGoal name="webtest:info"/> <attainGoal name="webtest:test"/> <attainGoal name="webtest:generate-test-report"/> <attainGoal name="webtest:generate-summary-report"/> + <attainGoal name="xdoc:transform"/> </j:if> </goal> <goal name="webtest:info" description="Prints the configuration"> <echo> maven.webtest.file = ${maven.webtest.file} + maven.webtest.target = ${maven.webtest.target} maven.webtest.src = ${maven.webtest.src} maven.webtest.config.host = ${maven.webtest.config.host} maven.webtest.config.port = ${maven.webtest.config.port} @@ -106,8 +108,10 @@ <sysproperty key="haltonfailure" value="${maven.webtest.config.haltonfailure}"/> <sysproperty key="haltonerror" value="${maven.webtest.config.haltonerror}"/> <sysproperty key="showhtmlparseroutput" value="${maven.webtest.config.showhtmlparseroutput}"/> + <arg value="${maven.webtest.ant.options}"/> <arg value="-f"/> <arg value="${testScriptFile}"/> + <arg value="${maven.webtest.target}"/> </java> </j:forEach> |