You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by lc...@apache.org on 2011/11/28 12:43:07 UTC

svn commit: r1207112 - /incubator/npanday/npanday-its/trunk/run.bat

Author: lcorneliussen
Date: Mon Nov 28 12:43:06 2011
New Revision: 1207112

URL: http://svn.apache.org/viewvc?rev=1207112&view=rev
Log:
Improved runner script.

Modified:
    incubator/npanday/npanday-its/trunk/run.bat

Modified: incubator/npanday/npanday-its/trunk/run.bat
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/run.bat?rev=1207112&r1=1207111&r2=1207112&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/run.bat (original)
+++ incubator/npanday/npanday-its/trunk/run.bat Mon Nov 28 12:43:06 2011
@@ -17,8 +17,13 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 :LicenseComment
+
 @echo off
 if X%1==X set test=
 if not X%1==X set test=-Dtest=*%1*
+
+if X%2==X set version=1.4.1-incubating-SNAPSHOT
+if not X%2==X set version=%2
 @echo on
-mvn test -Prun-its -Dnpanday.version=1.4.0-incubating-SNAPSHOT %test%
\ No newline at end of file
+
+mvn test -Prun-its -Dnpanday.version=%version% %test%
\ No newline at end of file