我正在开发一个以编程方式运行 Ant XML 文件的 Eclipse 插件。
我使用org.apache.tools.ant.helper.ProjectHelperImpl
然后org.apache.tools.ant.Project
解析 Ant XML 文件并运行特定目标,在本例中为test
.
我的 Ant XML 文件如下所示:
<!-- project class path -->
<path id="projectClassPath">
<fileset dir="${basedir}/jars">
<include name="**/*.jar" />
</fileset>
</path>
<!-- task definitions -->
<taskdef file="${basedir}/tasks.properties">
<classpath refid="projectClassPath" />
</taskdef>
<!-- test custom ant task -->
<target name="test" description="test target">
<customTask />
</target>
<!-- test echo -->
<target name="testEcho" description="test echo target">
<echo message="this is a test."/>
</target>
tasks.properties 文件如下所示:
customTask=my.custom.task.CustomTask
我以编程方式运行 Ant 文件的 java 代码:
Project ant = new Project();
ProjectHelperImpl helper = new ProjectHelperImpl();
MyDefaultLogger log = new MyDefaultLogger();
ant.init();
helper.parse(ant, antXml);
log.setMessageOutputLevel(Project.MSG_VERBOSE);
ant.addBuildListener(log);
ant.executeTarget(testTarget);
test
手动运行目标很好,但以test
编程方式运行目标会显示此错误:
taskdef class my.custom.task.CustomTask cannot be found using the classloader AntClassLoader[]
如果我还将在没有 的情况下以编程方式执行文件,project class path
它将成功运行。
我的假设是,以编程方式运行 Ant 文件时,它没有以某种方式注册类路径?编辑:
多个目标名称将目标名称更改为. (学分:@smooth 雷鬼)task definitions
test custom ant task
test
<!-- test echo -->
testEcho