使用 Ant 从 TFS 获取标记的文件



我需要使用 Ant 脚本将标记的文件从 TFS 服务器获取到另一个工作空间。基本上我需要构建一个Java项目。我已经尝试了以下构建.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project name="test-teamprise-ant-tasks" basedir="C:/EARs/TFS" default="deploy">
    <tstamp/>
    <record name="log/build.log.${DSTAMP}${TSTAMP}" action="start" loglevel="verbose" append="true"/>
    <property name="ant.lib.dir" value="C:/ant/lib"/> 
    <property name="tfs.server" value="http://tfsververurl:8080/tfs" />
    <property name="tfs_workspace_name" value="TFSWORKSPCENAME"/>
    <property name="tfs_project_name" value="$/PROJECT/CODE"/> 
    <typedef resource="com/teamprise/ant/antlib.xml" 
        classpath="${ant.lib.dir}/teamprise-ant-1.2.jar" />
    <target name="diagnostics">
        <tfstasksdiagnostics />
    </target> 
    <target name="get" description="get the codes">
        <echo message="Get latest source code from tfs"/>     
        <tfsget localpath="${basedir}/src" force="false" />
        <tfsget localpath="${basedir}/WebRoot" force="false" />
    </target>
    <target name="deploy" depends="get" description=" get the codes,compile,package and deploy the output file">
        <ant antfile="qk.xml"
            dir="${basedir}"
            inheritall="false"
            inheritrefs="false"
            target="war"/>
    </target>
</project>

我遇到以下问题:

Problem: failed to create task or type tfsget
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
        at org.apache.tools.ant.UnknownElement.getNotFoundException(UnknownElement.java:481)

我也试图从互联网上找到 teamprise-ant-1.2.jar。我无法得到它。请帮助我解决此问题或向我建议如何使用 TFS 管理生成。

Microsoft于2009年收购了Teamprise。teamprise.com 网站似乎不再可用,因此可能很难找到teamprise-ant-1.2.jar的副本。

较旧的teamprise-ant-1.1.jar的副本可以通过Internet Archive Wayback Machine获得。即使它是旧版本,它也支持<tfsget>任务。尝试一下,看看它是否适合您。

相关内容

  • 没有找到相关文章

最新更新