From: Siegfried G. <wd...@us...> - 2003-08-10 13:59:34
|
wdsgoe 03/08/10 06:59:34 Modified: webtest project.xml project.properties plugin.properties plugin.jelly webtest/xdocs changes.xml Log: Updates for the new release Revision Changes Path 1.7 +6 -2 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- project.xml 18 Jul 2003 09:30:01 -0000 1.6 +++ project.xml 10 Aug 2003 13:59:33 -0000 1.7 @@ -4,7 +4,7 @@ <pomVersion>3</pomVersion> <id>maven-webtest-plugin</id> <name>Canoo WebTest Plug-in</name> - <currentVersion>0.7</currentVersion> + <currentVersion>0.8</currentVersion> <organization> <name>SourceForge</name> <url>http://sourceforge.net/projects/maven-plugins/</url> @@ -27,7 +27,7 @@ <distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/webtest/distributions/</distributionDirectory> <repository> - <connection>scm:cvs:pserver:ano...@cv...:/cvsroot/maven-plugins:maven-plugins/webtest</connection> + <connection>scm:cvs:pserver:wd...@cv...:/cvsroot/maven-plugins:maven-plugins/webtest</connection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/webtest/</url> </repository> @@ -175,6 +175,10 @@ <resource> <directory>${basedir}/src/plugin-resources</directory> <targetPath>plugin-resources</targetPath> + </resource> + <resource> + <directory>${basedir}/webtest</directory> + <targetPath>webtest</targetPath> </resource> <resource> <directory>${basedir}</directory> 1.3 +1 -1 maven-plugins/webtest/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- project.properties 18 Jul 2003 09:30:01 -0000 1.2 +++ project.properties 10 Aug 2003 13:59:33 -0000 1.3 @@ -3,4 +3,4 @@ # ------------------------------------------------------------------- maven.xdoc.date=left maven.xdoc.version=${pom.currentVersion} -maven.license.licenseFile=${basedir}/../../../LICENSE.txt +# maven.license.licenseFile=${basedir}/../../LICENSE.txt 1.4 +1 -1 maven-plugins/webtest/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/plugin.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.properties 18 Jul 2003 09:30:01 -0000 1.3 +++ plugin.properties 10 Aug 2003 13:59:33 -0000 1.4 @@ -26,7 +26,7 @@ # -quiet ..... be extra quit # -debug ..... print debugging information -maven.webtest.ant.options= +maven.webtest.ant.options = # Settings for Canoo Webtest Configuration 1.7 +6 -6 maven-plugins/webtest/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/plugin.jelly,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- plugin.jelly 31 Jul 2003 18:34:52 -0000 1.6 +++ plugin.jelly 10 Aug 2003 13:59:33 -0000 1.7 @@ -99,13 +99,13 @@ them and start ANT accordingly --> - <j:set var="hasAntOptions" value="${maven.webtest.ant.options}X"/> + <j:set var="hasAntTarget" value="${maven.webtest.target}X"/> <j:forEach var="testScriptFile" items="${testScripts.iterator()}"> <!-- echo>Processing ${testScriptFile.getName()}</echo --> <!-- Start an ANT process for each webtest script --> - <j:if test="${hasAntOptions != 'X'}"> - <echo>We have ANT options ...</echo> + <j:if test="${hasAntTarget != 'X'}"> + <echo>We have an Ant target!!!</echo> <java classname="org.apache.tools.ant.Main" fork="yes" dir="${basedir}" failonerror="false"> <classpath> <path refid="webtest.classpath"/> @@ -128,8 +128,8 @@ <arg value="${maven.webtest.target}"/> </java> </j:if> - <j:if test="${hasAntOptions == 'X'}"> - <!-- echo>We have no ANT options ...</echo --> + <j:if test="${hasAntTarget == 'X'}"> + <echo>We have NO Ant target!!</echo> <java classname="org.apache.tools.ant.Main" fork="yes" dir="${basedir}" failonerror="false"> <classpath> <path refid="webtest.classpath"/> @@ -146,9 +146,9 @@ <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:if> </j:forEach> 1.5 +7 -0 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- changes.xml 18 Jul 2003 09:30:01 -0000 1.4 +++ changes.xml 10 Aug 2003 13:59:34 -0000 1.5 @@ -7,6 +7,13 @@ <releases> + <release version="0.8" date="2003-08-01"> + <action dev="wdsgoe" type="fix"> + Fixed empty target problem with the ANT invocation + under UNIX/LINUX + </action> + </release> + <release version="0.7" date="2003-07-18"> <action dev="wdsgoe" type="update"> Got the plugin working for Maven B10. |
From: Eric P. <de...@us...> - 2004-11-19 11:02:10
|
dep4b 04/11/19 03:01:51 Modified: webtest plugin.jelly webtest/xdocs changes.xml Log: Fix link to report. Revision Changes Path 1.10 +2 -2 maven-plugins/webtest/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/plugin.jelly,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- plugin.jelly 28 Oct 2004 08:51:03 -0000 1.9 +++ plugin.jelly 19 Nov 2004 11:01:51 -0000 1.10 @@ -14,7 +14,7 @@ <doc:registerReport name="Canoo WebTest Report" pluginName="webtest" description="Canoo WebTest Report." - link="webtest-report"/> + link="maven-webtest-report"/> </util:available> </goal> @@ -180,7 +180,7 @@ <fileset dir="${maven.webtest.home}/css" includes="*.*"/> </copy> - <!-- Invoke XALAN to to the transformation --> + <!-- Invoke XALAN to do the transformation --> <java classname="org.apache.xalan.xslt.Process" fork="yes" failonerror="true"> <classpath> <pathelement path="${plugin.getDependencyPath('xalan')}"/> 1.8 +5 -0 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- changes.xml 28 Oct 2004 08:52:18 -0000 1.7 +++ changes.xml 19 Nov 2004 11:01:51 -0000 1.8 @@ -7,6 +7,11 @@ <releases> + <release version="0.9.2" date=""> + <action dev="epugh" type="fix"> + Fix link to generated report when running maven site. + </action> + </release> <release version="0.9.1" date="2004-10-28"> <action dev="wdsgoe" type="update"> Updated to Canoo WebTest 543 |
From: Eric P. <de...@us...> - 2005-03-03 15:27:18
|
dep4b 05/03/03 07:27:08 Modified: webtest/src/plugin-resources/lib httpunit-patch.jar webtest.jar webtest/src/plugin-resources webtestTaskdefs.properties BuildNumber.txt webtest/xdocs changes.xml Added: webtest/src/plugin-resources/lib commons-io-1.0.jar nekohtml-0.9.4.jar commons-cli-1.0.jar commons-collections-3.1.jar jakarta-oro-2.0.4.jar commons-logging-1.0.4.jar jemmy.jar commons-codec-1.3.jar jaxen-1.0-FCS-full.jar saxpath-1.0-FCS.jar js-1.6R1.jar commons-beanutils-1.7.0.jar commons-httpclient-3.0-rc1.jar htmlunit-20050118.jar commons-lang-2.0.jar Removed: webtest/src/plugin-resources/lib js.jar antrunner.jar Log: Bump included build version of WebTest to 733 Revision Changes Path 1.2 +1 -25 maven-plugins/webtest/src/plugin-resources/lib/httpunit-patch.jar <<Binary file>> 1.2 +1965 -1539maven-plugins/webtest/src/plugin-resources/lib/webtest.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-io-1.0.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/nekohtml-0.9.4.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-cli-1.0.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-collections-3.1.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/jakarta-oro-2.0.4.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-logging-1.0.4.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/jemmy.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-codec-1.3.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/jaxen-1.0-FCS-full.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/saxpath-1.0-FCS.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/js-1.6R1.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-beanutils-1.7.0.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-httpclient-3.0-rc1.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/htmlunit-20050118.jar <<Binary file>> 1.1 maven-plugins/webtest/src/plugin-resources/lib/commons-lang-2.0.jar <<Binary file>> 1.3 +37 -16 maven-plugins/webtest/src/plugin-resources/webtestTaskdefs.properties Index: webtestTaskdefs.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/src/plugin-resources/webtestTaskdefs.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- webtestTaskdefs.properties 28 Oct 2004 08:32:30 -0000 1.2 +++ webtestTaskdefs.properties 3 Mar 2005 15:27:08 -0000 1.3 @@ -1,16 +1,21 @@ +############### core steps testSpec=com.canoo.webtest.ant.TestSpecificationTask config=com.canoo.webtest.engine.Configuration steps=com.canoo.webtest.ant.TestStepSequence followframe=com.canoo.webtest.steps.request.FollowFrame +selectWindow=com.canoo.webtest.steps.request.SelectWindow clickbutton=com.canoo.webtest.steps.request.ClickButton clicklink=com.canoo.webtest.steps.request.ClickLink +click=com.canoo.webtest.steps.request.Click +invoke=com.canoo.webtest.steps.request.InvokePage +setinputfield=com.canoo.webtest.steps.form.SetTextField +setradiobutton=com.canoo.webtest.steps.form.SetRadioButton +setselectfield=com.canoo.webtest.steps.form.SetSelectField +setcheckbox=com.canoo.webtest.steps.form.SetCheckbox +selectform=com.canoo.webtest.steps.form.SelectForm verifyxpath=com.canoo.webtest.steps.verify.VerifyXPath verifylinks=com.canoo.webtest.steps.verify.VerifyLinks verifycheckbox=com.canoo.webtest.steps.verify.VerifyCheckbox -invoke=com.canoo.webtest.steps.request.InvokePage -setinputfield=com.canoo.webtest.steps.SetInputField -setselectfield=com.canoo.webtest.steps.SetSelectField -setcheckbox=com.canoo.webtest.steps.SetCheckbox verifyelement=com.canoo.webtest.steps.verify.VerifyHtmlElementNamed verifyelementtext=com.canoo.webtest.steps.verify.VerifyElementText verifyinputfield=com.canoo.webtest.steps.verify.VerifyInputField @@ -18,8 +23,10 @@ verifytext=com.canoo.webtest.steps.verify.VerifyText verifytextarea=com.canoo.webtest.steps.verify.VerifyTextArea verifytitle=com.canoo.webtest.steps.verify.VerifyTitle -storeregex=com.canoo.webtest.steps.StoreRegExMatch -storexpath=com.canoo.webtest.steps.StoreXPath +verifyProperty=com.canoo.webtest.steps.verify.VerifyProperty +storeregex=com.canoo.webtest.steps.store.StoreRegExMatch +storexpath=com.canoo.webtest.steps.store.StoreXPath +storeProperty=com.canoo.webtest.steps.store.StorePropertyStep previousresponse=com.canoo.webtest.steps.PreviousResponse not=com.canoo.webtest.ant.NotStep repeat=com.canoo.webtest.ant.RepeatStep @@ -29,6 +36,7 @@ new_setradiobutton=com.canoo.webtest.steps.form.SetRadioButton new_selectform=com.canoo.webtest.steps.form.SelectForm +############### pdf steps decryptPdfDocument=com.canoo.webtest.steps.pdftest.DecryptPdfDocumentStep verifyPdfEncryption=com.canoo.webtest.steps.pdftest.VerifyPdfDocumentEncryptedStep verifyPdfEncryptionStrength=com.canoo.webtest.steps.pdftest.VerifyPdfDocumentEncryptionStrengthStep @@ -43,15 +51,28 @@ verifyPdfReadOnlyField=com.canoo.webtest.steps.pdftest.VerifyPdfReadOnlyFieldStep verifyPdfText=com.canoo.webtest.steps.pdftest.VerifyPdfTextStep -# extension (steps provided as is, without functional tests) -myCustomStep=com.canoo.webtest.extension.MyCustomStep -relayToBrowser=com.canoo.webtest.extension.RelayToBrowser -storeDynamicProperty=com.canoo.webtest.extension.StoreDynamicPropertyStep -exportProperty=com.canoo.webtest.extension.ExportProperty +############### extension steps (provided as is, with minimal or no functional tests) + group=com.canoo.webtest.extension.GroupStep -setfilefield=com.canoo.webtest.extension.SetFileField -groovy=com.canoo.webtest.extension.GroovyStep -reportLinks=com.canoo.webtest.extension.ReportLinksStep -sleep=com.canoo.webtest.extension.Sleep appletRunner=com.canoo.webtest.extension.applet.AppletRunnerStep -verifyCookie=com.canoo.webtest.extension.VerifyCookie \ No newline at end of file +verifyCookie=com.canoo.webtest.extension.VerifyCookie +storeCookie=com.canoo.webtest.extension.StoreCookie +storeHeader=com.canoo.webtest.extension.StoreHeader +storeResponseCode=com.canoo.webtest.extension.StoreResponseCode +myCustomStep=com.canoo.webtest.extension.MyCustomStep +sleep=com.canoo.webtest.extension.Sleep +groovy=com.canoo.webtest.extension.GroovyStep +setfilefield=com.canoo.webtest.extension.SetFileField +retry=com.canoo.webtest.extension.Retry +extractlinkparameter=com.canoo.webtest.extension.ExtractLinkParameter +verifyimages=com.canoo.webtest.extension.VerifyImages +enablejavascript=com.canoo.webtest.extension.EnableJavaScript +prepareDialogResponse=com.canoo.webtest.extension.PrepareDialogResponse +verifyNoDialogResponses=com.canoo.webtest.extension.VerifyNoDialogResponses +scriptStep=com.canoo.webtest.extension.ScriptStep +# relayToBrowser=com.canoo.webtest.extension.RelayToBrowser +# reportLinks=com.canoo.webtest.extension.ReportLinksStep + +############### deprecated steps - you are encouraged to move away from these steps +exportProperty=com.canoo.webtest.extension.ExportProperty +storeDynamicProperty=com.canoo.webtest.steps.store.StorePropertyStep 1.3 +1 -1 maven-plugins/webtest/src/plugin-resources/BuildNumber.txt Index: BuildNumber.txt =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/src/plugin-resources/BuildNumber.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- BuildNumber.txt 28 Oct 2004 08:32:30 -0000 1.2 +++ BuildNumber.txt 3 Mar 2005 15:27:08 -0000 1.3 @@ -1,3 +1,3 @@ -build.number=543 +build.number=733 1.10 +3 -0 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 19 Nov 2004 13:39:07 -0000 1.9 +++ changes.xml 3 Mar 2005 15:27:08 -0000 1.10 @@ -8,6 +8,9 @@ <releases> <release version="0.9.2" date=""> + <action dev="epugh" type="upgrade" due-to="Matt Raible"> + Upgrade to build 733 of Webtest. Mostly consists of updating jar files. + </action> <action dev="epugh" type="add"> Add the ability to supply a list of extra systemproperties (maven.webtest.sysproperties) that are passed into the Ant task. Any empty system properties will cause a prompt first to supply |
From: Eric P. <de...@us...> - 2005-03-18 18:24:09
|
dep4b 05/03/18 10:24:03 Modified: webtest project.xml webtest/xdocs changes.xml Log: prep for release. Revision Changes Path 1.19 +7 -2 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- project.xml 2 Mar 2005 17:43:34 -0000 1.18 +++ project.xml 18 Mar 2005 18:24:02 -0000 1.19 @@ -6,9 +6,9 @@ <id>maven-webtest-plugin</id> <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>0.9.2-SNAPSHOT</currentVersion> + <currentVersion>1.0</currentVersion> <!-- organization is in parent --> - <inceptionYear>2002</inceptionYear> + <inceptionYear>2002</ifnceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> <description>Maven Plugin for Canoo WebTest</description> <shortDescription>Maven Plugin for Canoo WebTest</shortDescription> @@ -22,6 +22,11 @@ </repository> <versions> + <version> + <id>1.0</id> + <name>1.0</name> + <tag>MAVEN_WEBTEST_PLUGIN_1_0</tag> + </version> </versions> <branches> 1.12 +4 -1 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- changes.xml 9 Mar 2005 11:37:31 -0000 1.11 +++ changes.xml 18 Mar 2005 18:24:03 -0000 1.12 @@ -7,7 +7,10 @@ <releases> - <release version="0.9.2" date=""> + <release version="0.9.2" date="2005-03-18"> + <action dev="epugh" type="upgrade"> + Upgrade to build 752 of Webtest. Mostly consists of updating jar files. + </action> <action dev="wdsgoe" type="fix" due-to="David Gerber"> Fixed anchors in the XSLT </action> |
From: Eric P. <de...@us...> - 2005-03-18 18:29:05
|
dep4b 05/03/18 10:28:58 Modified: webtest/xdocs changes.xml Log: missed on the version Revision Changes Path 1.13 +1 -1 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- changes.xml 18 Mar 2005 18:24:03 -0000 1.12 +++ changes.xml 18 Mar 2005 18:28:57 -0000 1.13 @@ -7,7 +7,7 @@ <releases> - <release version="0.9.2" date="2005-03-18"> + <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade"> Upgrade to build 752 of Webtest. Mostly consists of updating jar files. </action> |
From: Eric P. <de...@us...> - 2005-03-18 20:26:09
|
dep4b 05/03/18 12:25:58 Modified: webtest project.xml webtest/xdocs changes.xml Log: bump version! Revision Changes Path 1.21 +1 -1 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- project.xml 18 Mar 2005 18:30:29 -0000 1.20 +++ project.xml 18 Mar 2005 20:25:57 -0000 1.21 @@ -6,7 +6,7 @@ <id>maven-webtest-plugin</id> <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.0</currentVersion> + <currentVersion>1.1-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2002</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> 1.14 +2 -1 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- changes.xml 18 Mar 2005 18:28:57 -0000 1.13 +++ changes.xml 18 Mar 2005 20:25:58 -0000 1.14 @@ -6,7 +6,8 @@ </properties> <releases> - + <release version="1.1" date="in CVS"> + </release> <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade"> Upgrade to build 752 of Webtest. Mostly consists of updating jar files. |
From: Brett P. <bre...@us...> - 2005-03-18 21:40:08
|
brettporter 05/03/18 13:39:59 Modified: webtest/xdocs Tag: MAVEN_WEBTEST_PLUGIN_1_0-branch changes.xml Log: fix format Revision Changes Path No revision No revision 1.13.2.1 +2 -2 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -u -r1.13 -r1.13.2.1 --- changes.xml 18 Mar 2005 18:28:57 -0000 1.13 +++ changes.xml 18 Mar 2005 21:39:58 -0000 1.13.2.1 @@ -5,7 +5,7 @@ <author email="sie...@it...">Siegfried Goeschl</author> </properties> - <releases> + <body> <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade"> @@ -168,6 +168,6 @@ </action> </release> - </releases> + </body> </document> |
From: Brett P. <bre...@us...> - 2005-03-18 21:41:25
|
brettporter 05/03/18 13:41:13 Modified: webtest/xdocs changes.xml Log: fix for latest release too Revision Changes Path 1.15 +4 -4 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- changes.xml 18 Mar 2005 20:25:58 -0000 1.14 +++ changes.xml 18 Mar 2005 21:41:13 -0000 1.15 @@ -5,9 +5,9 @@ <author email="sie...@it...">Siegfried Goeschl</author> </properties> - <releases> - <release version="1.1" date="in CVS"> - </release> + <body> + <release version="1.1" date="in CVS"> + </release> <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade"> Upgrade to build 752 of Webtest. Mostly consists of updating jar files. @@ -169,6 +169,6 @@ </action> </release> - </releases> + </body> </document> |
From: Eric P. <de...@us...> - 2005-06-03 17:40:23
|
dep4b 05/06/03 10:40:12 Modified: webtest project.xml webtest/xdocs changes.xml Log: [maven-scm-plugin] prepare release 1.1 Revision Changes Path 1.22 +20 -35 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- project.xml 18 Mar 2005 20:25:57 -0000 1.21 +++ project.xml 3 Jun 2005 17:40:11 -0000 1.22 @@ -3,35 +3,40 @@ <project> <extend>${basedir}/../plugin-project.xml</extend> <!--pomVersion is in parent --> + <id>maven-webtest-plugin</id> <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.1-SNAPSHOT</currentVersion> + + <currentVersion>1.1</currentVersion> <!-- organization is in parent --> + <inceptionYear>2002</inceptionYear> <!-- package, logo are in parent. no gumpRepositoryId --> + <description>Maven Plugin for Canoo WebTest</description> <shortDescription>Maven Plugin for Canoo WebTest</shortDescription> <!-- issue tracking url, siteAddress are in parent --> + <siteDirectory>/home/groups/m/ma/maven-plugins/htdocs/webtest/</siteDirectory> <distributionDirectory>/home/groups/m/ma/maven-plugins/htdocs/webtest/distributions/</distributionDirectory> - <repository> <connection>scm:cvs:pserver:wd...@cv...:/cvsroot/maven-plugins:maven-plugins/webtest</connection> <url>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/maven-plugins/maven-plugins/webtest/</url> </repository> - <versions> <version> <id>1.0</id> <name>1.0</name> <tag>MAVEN_WEBTEST_PLUGIN_1_0</tag> - </version> + </version> + <version> + <id>1.1</id> + <name>1.1</name> + <tag>MAVEN_WEBTEST_PLUGIN_1_1</tag> + </version> </versions> - - <branches> - </branches> - + <branches></branches> <!-- mailingLists are in parent --> <developers> @@ -60,7 +65,7 @@ <roles> <role>Software Developer</role> </roles> - </developer> + </developer> <developer> <name>Vincent Massol</name> <id>vmassol</id> @@ -70,7 +75,7 @@ <role>Software Developer</role> </roles> </developer> - <developer> + <developer> <name>Willie Vu</name> <id>willievu</id> <email>wil...@ya...</email> @@ -79,108 +84,90 @@ </roles> </developer> </developers> - <dependencies> <dependency> <groupId>commons-jelly</groupId> <artifactId>commons-jelly-tags-interaction</artifactId> <version>1.0</version> - </dependency> - + </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <version>1.5.2</version> <url>http://jakarata.apache.org/ant</url> </dependency> - <dependency> <groupId>ant</groupId> <artifactId>ant-optional</artifactId> <version>1.5.2</version> <url>http://jakarata.apache.org/ant</url> </dependency> - <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>1.4.1</version> </dependency> - <dependency> - <groupId>commons-cli</groupId> - <artifactId>commons-cli</artifactId> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> <version>1.0</version> <url>http://jakarta.apache.org/commons/cli/index.html</url> </dependency> - <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.4</version> <url>http://www.dom4j.org</url> </dependency> - <dependency> <groupId>groovy</groupId> <artifactId>groovy</artifactId> <version>1.0-beta-6</version> <url>http://groovy.codehaus.org/</url> </dependency> - <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.6</version> - <url></url> + <url/> </dependency> - - <dependency> <groupId>jtidy</groupId> <artifactId>jtidy</artifactId> <version>4aug2000r7-dev</version> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <url>http://www.junit.org</url> </dependency> - <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.8</version> </dependency> - <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.6</version> </dependency> - <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.5.1</version> </dependency> - <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.4.0</version> </dependency> - <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.0.b2</version> </dependency> - </dependencies> - <build> <resources> <resource> @@ -205,13 +192,11 @@ </resource> </resources> </build> - <reports> - <report>maven-changes-plugin</report> + <report>maven-changes-plugin</report> <report>maven-changelog-plugin</report> <report>maven-developer-activity-plugin</report> <report>maven-file-activity-plugin</report> <report>maven-license-plugin</report> </reports> </project> - 1.16 +38 -141 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- changes.xml 18 Mar 2005 21:41:13 -0000 1.15 +++ changes.xml 3 Jun 2005 17:40:11 -0000 1.16 @@ -1,174 +1,71 @@ -<?xml version="1.0"?> +<?xml version="1.0" encoding="UTF-8"?> + <document> <properties> <title>Changes</title> <author email="sie...@it...">Siegfried Goeschl</author> </properties> - <body> - <release version="1.1" date="in CVS"> - </release> + <release version="1.1" date="2005-06-03"></release> <release version="1.0" date="2005-03-18"> - <action dev="epugh" type="upgrade"> - Upgrade to build 752 of Webtest. Mostly consists of updating jar files. - </action> - <action dev="wdsgoe" type="fix" due-to="David Gerber"> - Fixed anchors in the XSLT - </action> - <action dev="wdsgoe" type="fix" due-to="Krystian Nowak"> - Hopefully fixed passing emtpy parameters to ANT on UNIX. - </action> - <action dev="epugh" type="upgrade" due-to="Matt Raible"> - Upgrade to build 733 of Webtest. Mostly consists of updating jar files. - </action> - <action dev="epugh" type="add"> - Add the ability to supply a list of extra systemproperties (maven.webtest.sysproperties) that - are passed into the Ant task. Any empty system properties will cause a prompt first to supply - the data. - </action> - <action dev="epugh" type="fix"> - Fix link to generated report when running maven site. - </action> + <action dev="epugh" type="upgrade">Upgrade to build 752 of Webtest. Mostly consists of updating jar files.</action> + <action dev="wdsgoe" type="fix" due-to="David Gerber">Fixed anchors in the XSLT</action> + <action dev="wdsgoe" type="fix" due-to="Krystian Nowak">Hopefully fixed passing emtpy parameters to ANT on UNIX.</action> + <action dev="epugh" type="upgrade" due-to="Matt Raible">Upgrade to build 733 of Webtest. Mostly consists of updating jar files.</action> + <action dev="epugh" type="add">Add the ability to supply a list of extra systemproperties (maven.webtest.sysproperties) that are passed into the Ant task. Any empty system properties will cause a prompt first to supply the data.</action> + <action dev="epugh" type="fix">Fix link to generated report when running maven site.</action> </release> <release version="0.9.1" date="2004-10-28"> - <action dev="wdsgoe" type="update"> - Updated to Canoo WebTest 543 - </action> - <action dev="wdsgoe" type="update"> - Shipping the custom Canoo WebTest libraries as plugin-resources since the can't be uploaded to IBIBLIOP - </action> - <action dev="wdsgoe" type="update"> - Removed the special handling for ANT targets in the JELLY script - hope this still works on UNIX?! - </action> + <action dev="wdsgoe" type="update">Updated to Canoo WebTest 543</action> + <action dev="wdsgoe" type="update">Shipping the custom Canoo WebTest libraries as plugin-resources since the can't be uploaded to IBIBLIOP</action> + <action dev="wdsgoe" type="update">Removed the special handling for ANT targets in the JELLY script - hope this still works on UNIX?!</action> </release> - <release version="0.9.0" date="2004-08-10"> - <action dev="wdsgoe" type="update"> - Dropping JSTL in favour for XSLT and the the available XSL templates from Canoo - </action> - <action dev="wdsgoe" type="add"> - Added a webtest:loop target - </action> + <action dev="wdsgoe" type="update">Dropping JSTL in favour for XSLT and the the available XSL templates from Canoo</action> + <action dev="wdsgoe" type="add">Added a webtest:loop target</action> </release> - <release version="0.8" date="2003-08-01"> - <action dev="wdsgoe" type="fix"> - Fixed empty target problem with the ANT invocation - under UNIX/LINUX - </action> + <action dev="wdsgoe" type="fix">Fixed empty target problem with the ANT invocation under UNIX/LINUX</action> </release> - <release version="0.7" date="2003-07-18"> - <action dev="wdsgoe" type="update"> - Got the plugin working for Maven B10. - </action> - <action dev="wdsgoe" type="update"> - Dropped the finishing time of sumamry report - since it is redundant and just use precious - space - </action> - <action dev="wdsgoe" type="update"> - Extended the individual test report to show - the parameters of the test steps. The generated - HTML report now contains all the information - of the original XSLT report apart from the - html parser warnings. - </action> + <action dev="wdsgoe" type="update">Got the plugin working for Maven B10.</action> + <action dev="wdsgoe" type="update">Dropped the finishing time of sumamry report since it is redundant and just use precious space</action> + <action dev="wdsgoe" type="update">Extended the individual test report to show the parameters of the test steps. The generated HTML report now contains all the information of the original XSLT report apart from the html parser warnings.</action> </release> - <release version="0.6" date="2003-01-3"> - <action dev="wdsgoe" type="fix"> - Using current versions of Canoo Webtest, NekoHtml und XERCES - </action> - <action dev="wdsgoe" type="fix"> - Removed feature in plugin.jelly wich allows to add a JAR - into ANT's classpath using JAR id for the local repository. - Not defining anything resulted to adding all Jars of the - local repository - </action> - <action dev="wdsgoe" type="add"> - Added more detailed information how to use Canoo Webtest with - SSL - </action> + <action dev="wdsgoe" type="fix">Using current versions of Canoo Webtest, NekoHtml und XERCES</action> + <action dev="wdsgoe" type="fix">Removed feature in plugin.jelly wich allows to add a JAR into ANT's classpath using JAR id for the local repository. Not defining anything resulted to adding all Jars of the local repository</action> + <action dev="wdsgoe" type="add">Added more detailed information how to use Canoo Webtest with SSL</action> </release> - <release version="0.6" date="2003-01-3"> - <action dev="wdsgoe" type="fix"> - Using current versions of Canoo Webtest, NekoHtml und XERCES - </action> - <action dev="wdsgoe" type="fix"> - Removed feature in plugin.jelly wich allows to add a JAR - into ANT's classpath using JAR id for the local repository. - Not defining anything resulted to adding all Jars of the - local repository - </action> - <action dev="wdsgoe" type="add"> - Added more detailed information how to use Canoo Webtest with - SSL - </action> + <action dev="wdsgoe" type="fix">Using current versions of Canoo Webtest, NekoHtml und XERCES</action> + <action dev="wdsgoe" type="fix">Removed feature in plugin.jelly wich allows to add a JAR into ANT's classpath using JAR id for the local repository. Not defining anything resulted to adding all Jars of the local repository</action> + <action dev="wdsgoe" type="add">Added more detailed information how to use Canoo Webtest with SSL</action> </release> - <release version="0.5" date="2002-12-30"> - <action dev="wdsgoe" type="add"> - Added a "maven.webtest.target" property fo define a - target to be executed - </action> - <action dev="wdsgoe" type="add"> - Added a few Canoo Webtest samples - </action> - <action dev="wdsgoe" type="add"> - The default target "webtest" does everything now - </action> + <action dev="wdsgoe" type="add">Added a "maven.webtest.target" property fo define a target to be executed</action> + <action dev="wdsgoe" type="add">Added a few Canoo Webtest samples</action> + <action dev="wdsgoe" type="add">The default target "webtest" does everything now</action> </release> - <release version="0.4" date="2002-11-12"> - <action dev="wdsgoe" type="fix"> - Not inlcuding the project dependencies when calling ANT. - This should avoid clashes with the various Xerces on this - planet + <action dev="wdsgoe" type="fix">Not inlcuding the project dependencies when calling ANT. This should avoid clashes with the various Xerces on this planet</action> + <action dev="wdsgoe" type="add">Since the project dependencies are not longer included a new property + <b>maven.webtest.jar.include</b>is used tpo selectively import JARs from the project. The property contains a comma seperated list of JAR ids to add JARs defined in the project.xml </action> - <action dev="wdsgoe" type="add"> - Since the project dependencies are not longer included a - new property <b>maven.webtest.jar.include</b> is used - tpo selectively import JARs from the project. The property - contains a comma seperated list of JAR ids to add JARs - defined in the project.xml - </action> - <action dev="wdsgoe" type="add"> - Using HttpUnit 1.5 instead of 1.4.1 - </action> - <action dev="wdsgoe" type="add"> - Using NeckoHTML instead of JTidy due to HttpUnit 1.5 - </action> + <action dev="wdsgoe" type="add">Using HttpUnit 1.5 instead of 1.4.1</action> + <action dev="wdsgoe" type="add">Using NeckoHTML instead of JTidy due to HttpUnit 1.5</action> </release> - <release version="0.3" date="2002-10-24"> - <action dev="wdsgoe" type="fix"> - Removed XALAN from the ANT classpath since it was not needed - </action> - <action dev="wdsgoe" type="add"> - Using images for the result of a webtest - </action> - <action dev="wdsgoe" type="add"> - Added number of executed tests to summary report - </action> + <action dev="wdsgoe" type="fix">Removed XALAN from the ANT classpath since it was not needed</action> + <action dev="wdsgoe" type="add">Using images for the result of a webtest</action> + <action dev="wdsgoe" type="add">Added number of executed tests to summary report</action> </release> - <release version="0.2" date="2002-10-24"> - <action dev="wdsgoe" type="add"> - Retrieving the required JARs from project.xml - </action> - <action dev="wdsgoe" type="add"> - Provided properties to add additional JARs for executing ANT - </action> + <action dev="wdsgoe" type="add">Retrieving the required JARs from project.xml</action> + <action dev="wdsgoe" type="add">Provided properties to add additional JARs for executing ANT</action> </release> - <release version="0.1" date="2002-10-18"> - <action dev="wdsgoe" type="add"> - Initial plugin created - </action> + <action dev="wdsgoe" type="add">Initial plugin created</action> </release> - </body> </document> - |
From: Eric P. <de...@us...> - 2005-06-03 17:54:13
|
dep4b 05/06/03 10:54:06 Modified: webtest project.xml webtest/xdocs changes.xml Log: Prep for next version Revision Changes Path 1.23 +1 -1 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- project.xml 3 Jun 2005 17:40:11 -0000 1.22 +++ project.xml 3 Jun 2005 17:54:04 -0000 1.23 @@ -8,7 +8,7 @@ <name>Canoo WebTest Plug-in</name> <!-- groupId is in parent --> - <currentVersion>1.1</currentVersion> + <currentVersion>1.2-SNAPSHOT</currentVersion> <!-- organization is in parent --> <inceptionYear>2002</inceptionYear> 1.17 +1 -0 maven-plugins/webtest/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/xdocs/changes.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- changes.xml 3 Jun 2005 17:40:11 -0000 1.16 +++ changes.xml 3 Jun 2005 17:54:05 -0000 1.17 @@ -6,6 +6,7 @@ <author email="sie...@it...">Siegfried Goeschl</author> </properties> <body> + <release version="1.2" date="IN CVS"></release> <release version="1.1" date="2005-06-03"></release> <release version="1.0" date="2005-03-18"> <action dev="epugh" type="upgrade">Upgrade to build 752 of Webtest. Mostly consists of updating jar files.</action> |