http://nagoya.apache.org/bugzilla/show_bug.cgi?id=840
*** shadow/840 Mon Mar 5 07:22:20 2001
--- shadow/840.tmp.1548 Mon Mar 5 07:22:20 2001
***************
*** 0 ****
--- 1,44 ----
+ +============================================================================+
+ | cvs task doesn't work in ant-1.3 |
+ +----------------------------------------------------------------------------+
+ | Bug #: 840 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 |
+ I have a build.xml file with the following statements:
+ <property name="cvs.update.cmd" value="update -P -d"/>
+ <target name="update" depends="init">
+ <cvs command="${cvs.update.cmd}" dest="${src.dir}"/>
+ </target>
+ For ant-1.2, "ant update" retrieves the updates from the CVS repository,
+ for ant-1.3, "ant update" does _nothing_. The output is:
+
+ Ant version 1.3 compiled on March 5 2001
+
+ Buildfile: build.xml
+ Detected Java Version: 1.2
+ Detected OS: SunOS
+ parsing buildfile /home/online/merger/build.xml with URI =
+ file:/home/online/merger/build.xml
+ resolving systemId: file:/home/online/merger/build.dtd
+ Project base dir set to: /home/online/merger
+ Build sequence for target `update' is [init, update]
+ Complete build sequence is [init, update, rmCrap, compile, docclean, clean,
+ distclean, docs, version, jarRequired, jar, all, dtd]
+
+ init:
+
+ update:
+
+ BUILD SUCCESSFUL
+
+ Total time: 2 seconds