我在我的项目中使用 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”中的属性)。但也许有更好的方法可以让这个工作......
问候
基督教