📜  Apache Ant CVS任务

📅  最后修改于: 2020-12-26 13:53:07             🧑  作者: Mango

Apache Ant CVS任务

CVS(并行版本系统)是一个版本控制系统。它用于处理从CVS存储库检索的模块。

Apache Ant CVS任务属性

Attribute Description Required
command Command to be executed. No
compression Require either true or false No
compressionlevel It takes a number between 1 and 9. No
cvsRoot A CVSROOT variable. No
cvsRsh A CVS_RSH variable. No
dest A destination directory path. No
package Package name to be checked out. No
tag Tag of the package to check out. No
date Date of most recent revision. No
quiet Suppress informational messages. No
reallyquiet Suppress all messages. No
noexec No execution. No
output To produce output. No
error The file to direct standard error from the command. No
append whether to append output/error when redirecting to a file. No
port Port to be used by CVS. No
passfile A file that read passwords. No
failonerror Stop the build process if fails. No

Apache Ant CVS任务示例

让我们看一个示例,在该示例中,从cvsRoot属性所指向的CVS存储库中检出package ant,并将文件存储在$ {ws.dir}中。


    
            
    

我们可以更新已签出到$ {ws.dir}中的软件包。使用以下示例。