我正在尝试编写一个脚本,从RTC下载/检出jar文件,然后存储在我的本地存储库中。我该怎么做,有没有可以帮助我的教程?
感谢。
答案 0 :(得分:0)
您可以查看文章“Using the SCM Command Line Interface in builds”,其中介绍了SCM命令行界面(SCM CLI)如何允许用户从脚本加载,提交和提供更改。
它使用SCM CLI,可以在任何RTC“客户端”下载的jazz/scmtools/eclipse
中找到。
您可以在“Loading Content from a Jazz Source Control Repository in Rational Team Concert 2.0, 3.0 and 3.0.1”中使用该CLI加载沙箱的示例。
您也可以使用特定的ant任务teamFetch
来代替scm。
<teamFetch repositoryAddress="${repositoryAddress}"
userId="${userId}"
passwordFile="${passwordFile}"
workspaceUUID="${env.workspaceId}"
destination="${sourceDir}"
verbose="true" />