Java中以编程方式执行ANT脚本

问题描述 投票:0回答:3

我已经在eclipse中构建了一个swing gui,它应该运行以前开发的一堆代码,其中一部分涉及运行ant来构建代码。当我在GUI之外(原始项目中)运行任何脚本时,ant会正确执行并构建项目。但是,当我尝试以编程方式运行ant时,会引发错误,看起来像项目没有必要的.jars。下面列出了代码,build.xml的顶部和错误。

代码块

File buildFile = new File("lib\\ePlay\\build.xml");
    Project p = new Project();
    p.setUserProperty("ant.file", buildFile.getAbsolutePath());
    DefaultLogger consoleLogger = new DefaultLogger();
    consoleLogger.setErrorPrintStream(System.err);
    consoleLogger.setOutputPrintStream(System.out);
    consoleLogger.setMessageOutputLevel(Project.MSG_INFO);
    p.addBuildListener(consoleLogger);

    try {
        p.fireBuildStarted();
        p.init();
        ProjectHelper helper = ProjectHelper.getProjectHelper();
        p.addReference("ant.projectHelper", helper);
        helper.parse(p, buildFile);
        p.executeTarget(p.getDefaultTarget());
        p.fireBuildFinished(null);
    } catch (BuildException e) {
        p.fireBuildFinished(e);
    }

Build.xml

<?xml version="1.0" encoding="UTF-8"?>
<project name="EPlay" xmlns:ivy="antlib:org.apache.ivy.ant" default="resolve">

<dirname file="${ant.file}" property="ant.dir" />
<property name="scm.user" value="scmrel"/>
<property name="scm.user.key" value="/.ssh/scmrel/id_rsa"/>
<property name="ivy.jar" value="ivy-2.0.0.jar" />
<property name="ivy.settings.dir" value="${ant.dir}/ivysettings" />
<property name="VERSION" value="LATEST" />
<property name="tasks.dir" value="${ant.dir}/.tasks" />
<property name="deploy.dir" value="${ant.dir}/deploy" />
...
<!-- retrieve the dependencies using Ivy -->
<target name="resolve" depends="_loadantcontrib,_getivy" description=" retrieve the dependencies with Ivy">
  <ivy:settings file="${ivy.settings.dir}/ivysettings.xml" />
  <ivy:resolve file="${ant.dir}/ivy.xml" transitive="false" />
  <ivy:retrieve pattern="${deploy.dir}/[conf]/[artifact].[ext]"/>
</target>

和错误

resolve:
BUILD FAILED
H:\eclipse\CLDeploySwing\lib\ePlay\build.xml:66: Problem: failed to create task or type antlib:org.apache.ivy.ant:settings
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

This appears to be an antlib declaration. 
Action: Check that the implementing library exists in one of:
        -ANT_HOME\lib
        -the IDE Ant configuration dialogs


Total time: 0 seconds

我已经查看过我的蚂蚁安装,并且它[[显示一切都在那里。就像我说的那样,如果build.xml在此应用程序外部运行,则原始项目将成功构建。

java eclipse ant
3个回答
1
投票
您可以通过将正确的环境变量传递给JVM或直接调用System.getProperty(“ ANT_HOME”)来确定您的ANT_HOME实际位于何处,从而确保这是正确的。

0
投票
<echo message="basedir='${basedir}'/>

查看此行

File buildFile = new File("lib\\ePlay\\build.xml");

可能是它有2个级别(我知道文档说它应该是build.xml的父目录,但您不是从命令行运行的。)

0
投票
我正在Gradle中执行此操作,要求这样做

ant.taskdef(name: 'ivy-retrieve', classname: 'org.apache.ivy.ant.IvyRetrieve', classpath: '...path to ivy jar.../ivy-2.2.0.jar')

在蚂蚁里面会是这样

<taskdef name="ivy-retrieve" classname="org.apache.ivy.ant.IvyRetrieve"/>

我知道它比较笨拙,根本不如包含名称空间声明那样好,但是它确实消除了一些关于在哪个类路径上加载哪个库的困惑。
© www.soinside.com 2019 - 2024. All rights reserved.