0

我在我的项目中使用 ant 任务来做很多事情,比如创建目录、删除文件等等。在这种情况下,我从我的 SVN 服务器获得了一个分支列表,它运行良好。这一切都发生在我的程序运行时,从 java 代码中触发任务。

我的问题是:是否可以操作 ant 文件(tasks.xml)?用户应该输入用户名/密码组合,并且在触发任务时,这些凭据应该在我的 ant-task 中使用,而不是在属性中使用。

蚂蚁文件:

<target name="getBranchList">
    <exec executable="c:/svnclient/svn.exe" 
            output="c:/test/output/versionsonsvn.log">
        <arg value="ls" />
        <arg value="--username" />
        <arg value="${svn.user}" />
        <arg value="--password" />
        <arg value="${svn.password}" />
        <arg value="--non-interactive" />
        <arg value="--trust-server-cert" />
        <arg value="${svn.server}" />
    </exec>
</target>

我如何在 Java 中使用它:

import org.apache.tools.ant.*;

public static void main(final String[] args) {
    Vector<String> v = new Vector<String>();
    v.add("getBranchList");
    v.add("someOtherTask");
    fireAntTasks("c:/test/tasks.xml", v); }

private void fireAntTasks(String fileName, Vector<String> v) {
    File taskFile = new File(fileName);
    if (buildFile.exists()) {
        Project p = new Project();
        p.setUserProperty("ant.file", buildFile.getAbsolutePath());
        p.init();
        ProjectHelper helper = ProjectHelper.getProjectHelper();
        p.addReference("ant.projectHelper", helper);
        helper.parse(p, buildFile);
        p.executeTargets(v);

    } else {
        System.out.println("File not found!");
    }
}

我能想象的唯一解决方案是直接操作文件(在运行时设置“tasks.xml”中的属性)。但也许有更好的方法可以让这个工作......

问候

基督教

4

2 回答 2

1

我不确定我是否完全理解你,但我猜你试图让用户输入来替换一些属性。

您可以使用输入任务,它将提示您可以将其存储到变量中的用户。

或者,您可以通过属性任务加载用户在执行 ant 之前编辑的属性文件。

于 2012-04-27T15:18:23.690 回答
1

您可以使用loadproperties 任务和属性文件来实现类似的功能:

<loadproperties srcFile="build.properties"/>

每个用户都必须build.properties在构建目录中创建一个并将值放入其中,如下所示:

svn.user = user
svn.password = password

您也可以这样做,以便此文件位于主目录中:

<loadproperties srcFile="${user.home}/build.properties"/>

这样文件将受到更多保护。

于 2012-04-27T15:19:32.760 回答