http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1224
*** shadow/1224 Wed Apr 4 22:37:12 2001 --- shadow/1224.tmp.9498 Wed Apr 4 22:37:12 2001 *************** *** 0 **** --- 1,96 ---- + +============================================================================+ + | cvs TASK with "dest" PROPERTY does not work | + +----------------------------------------------------------------------------+ + | Bug #: 1224 Product: Ant | + | Status: NEW Version: 1.3 | + | Resolution: Platform: Sun | + | Severity: Normal OS/Version: Solaris | + | Priority: Component: Core tasks | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + When using the cvs task, if I specify a "dest" the task does not execute. + + For Example... + Task without dest: + <target name="cvsco"> + <!-- Get a fresh copy of the sources from cvs --> + <echo message="start cvs"/> + <cvs package="java"/> + <echo message="cvs done."/> + </target> + Output when run with -verbose option: + + Ant version 1.3 compiled on March 2 2001 + + Buildfile: build.xml + Detected Java Version: 1.2 + Detected OS: SunOS + parsing + buildfile /export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin + /build.xml with URI = + file:/export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin/buil + d.xml + Project base dir set + to: /export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin + Build sequence for target `cvsco' is [cvsco] + Complete build sequence is [cvsco, preparejarconfig, init, compile, distwar, + packjarconfig, distjar, dist, clean] + + cvsco: + [echo] start cvs + [cvs] cvs checkout: Updating java + [cvs] ...yada yada yada + [cvs] cvs checkout: Updating java/eservcommon/requirements + [echo] cvs done. + + BUILD SUCCESSFUL + + Total time: 1 minute 22 seconds + + ------------------------ + Task with dest property + <target name="cvsco"> + <!-- Get a fresh copy of the sources from cvs --> + <echo message="start cvs"/> + <cvs dest="/export/home/sethv" package="java"/> + <echo message="cvs done."/> + </target> + + Output run with -verbose option + Ant version 1.3 compiled on March 2 2001 + + Buildfile: build.xml + Detected Java Version: 1.2 + Detected OS: SunOS + parsing + buildfile /export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin + /build.xml with URI = + file:/export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin/buil + d.xml + Project base dir set + to: /export/home/sethv/sicrm/src/java/eservcommon/deployment/etc/build/bin + Build sequence for target `cvsco' is [cvsco] + Complete build sequence is [cvsco, preparejarconfig, init, compile, distwar, + packjarconfig, distjar, dist, clean] + + cvsco: + [echo] start cvs + [echo] cvs done. + + BUILD SUCCESSFUL + + Total time: 1 second + + ----- + + + + help please. + Thanks + Seth.