以编程方式使用Ant任务执行Ant脚本

我有一个使用Ant任务的Ant脚本(我使用这个任务来执行QVTo转换)。

Ant脚本如下:

<?xml version="1.0" encoding="UTF-8"?>
<project name="project" default="default" xmlns:qvto="http://www.eclipse.org/qvt/1.0.0/Operational">
    <target name="default">

    <taskdef name="http://www.eclipse.org/qvt/1.0.0/Operational:transformation" classname="org.eclipse.m2m.internal.qvt.oml.runtime.ant.QvtoAntTransformationTask">
        <classpath>
           <pathelement location="${basedir}/libAnt/antTasks.jar"/>
        </classpath>
    </taskdef>

    <qvto:transformation uri="platform:/resource/QVToTransformation/transforms/QVTTransformation.qvto">

            <in uri="platform:/resource/QVToTransformation/In/In.ecp" />  
            <out uri="platform:/resource/QVToTransformation/Out/Out.uml" />

            <trace uri="platform:/resource/QVToTransformation/Trace/trace.qvtotrace"
                generate="true" incrementalUpdate="false"  />

        </qvto:transformation>

    </target>
</project>

我在Java中用来执行Ant脚本的代码如下:

File AntFile = new File(this.getClass().getResource("qvto/AntQVTo.xml").getFile());
Project p = new Project();
p.setUserProperty(
    "ant.file", 
    this.getClass().getResource("qvto/AntQVTo.xml").getFile()
    );

p.init();

ProjectHelper helper = ProjectHelper.getProjectHelper();
p.addReference("ant.projectHelper", helper);
helper.parse(p, AntFile);
p.executeTarget(p.getDefaultTarget());

当我运行我的Java代码时,问题在于,似乎Ant Task完全无法识别,当我运行以下错误时会返回:

Exception in thread "AWT-EventQueue-0" C:pathtoAntTaskAntQVTo.xml:5: Problem: failed to create task or type http://www.eclipse.org/qvt/1.0.0/Operational:transformation
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.
No types or tasks have been defined in this namespace yet

如果我在Eclipse中直接执行Ant脚本,则没有任何问题,因为此任务默认在Eclipse首选项中定义到Ant-> Runtime-> Tasks中。

问题可能是在Java代码中执行的Ant脚本没有作为“在与项目相同的JRE中运行”运行。

我在plugin.xml中定义了一个Ant任务,它在类路径中运行Eclipse应用程序,也作为扩展:

<extension point="org.eclipse.ant.core.antTasks">
    <antTask
        class="org.eclipse.m2m.internal.qvt.oml.runtime.ant.QvtoAntTransformationTask"
        eclipseRuntime="true"
        headless="true"
        library="libAnt/antTasks.jar"
        name="transformation"
        uri="http://www.eclipse.org/qvt/1.0.0/Operational"
        />
</extension>

有谁知道我该如何解决我的问题?

在此先感谢和问候。


缺少Apache IVY库,从此处下载此库 - apache并将该jar复制到您的ant lib目录中并添加到类路径中。

  • 下载jar并安装Ant(例如,C: Apps Tools apache-ant-1.9)。

  • 下载jar并提取常春藤(例如,C: Users UserName Downloads apache-ivy-2.4)

  • 将C: Users UserName Downloads apache-ivy-2.4 ivy-2.4.jar复制到C: Apps Tools apache-ant-1.9 lib中。


  • 你可以尝试改变

    从:

    <taskdef name="http://www.eclipse.org/qvt/1.0.0/Operational:transformation" classname="org.eclipse.m2m.internal.qvt.oml.runtime.ant.QvtoAntTransformationTask">
    

    至:

    <taskdef name="transformation" classname="org.eclipse.m2m.internal.qvt.oml.runtime.ant.QvtoAntTransformationTask">
    

    并将名称空间前缀移除到transformation任务/元素。

    链接地址: http://www.djcxy.com/p/7719.html

    上一篇: Execute Ant Script with Ant Tasks Programmatically

    下一篇: Default Classloader when executing ANT task