Intelli J IDEA工件,后处理不起作用

时间:2017-12-15 07:55:56

标签: java web intellij-idea ant

构建工件后,我想运行一个ant目标。但是它没有工作。

1.我通过Ant Build Tool Window创建了一个ant目标。 (它可以独立运行)

enter image description here

2.我选择了Run Ant目标复选框并指定了目标。

enter image description here

3.在设置后没有显示我。

enter image description here

当我运行Build - > Build工件时,ant目标无效。 但是当我通过Ant Build Tool运行它时,它运行良好。 任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

确保已在 build.xml 文件中定义了目标

下面是构建XML的示例。

<?xml version = "1.0"?>
<project name = "Hello World Project" default = "info">
    <target name = "info">
        <echo>Hello World - Welcome to Apache Ant!</echo>
    </target>
</project>

将XML文件添加到IntelliJ IDEA时,您可以找到项目下列出的目标

Target displayed within IntelliJ IDEA

然后可以将目标添加到预处理或后处理任务中。

Browse window for selecting targets Post processing target