Checkout module from CVS using Nant
Hi,
Can u help me ??
tell me how i checkout the module from CVS??
I wrote.build file like given below but it not working...
<?xml version="1.0" encoding="utf-8" ?>
<project name="check" default="run" basedir=".">
<target name="run" depends="build">
<cvs-checkout
destination="c:\NewCheckout1"
cvsroot=":pserver;username='vbhoite';password='vin od123';hostname=192.168.1.
204;port=2401:/cvs/ta/production"
module="TA"
revision="PET_TA"
>
</cvs-checkout>
</target>
<target name="build">
<cvs-checkout
destination="c:\NewCheckout1"
cvsroot=":pserver;username=vbhoite;password=vinod1 23;hostname=192.168.1.204;
port=2401:/cvs/ta/production"
module="TA"
revision="PET_TA"
>
</cvs-checkout>
</target>
</project>
And I used commandâ
nant -v -buildfile:check.build
But it not working.
|