Intellij IDEA工件,后处理无法正常工作

问题描述 投票:2回答:1

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

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

enter image description here

2.I选中Run Ant目标复选框并指定目标。

enter image description here

3.没有告诉我没有设置。

enter image description here

当我运行Build - > Build工件时,ant目标不起作用。但是当我通过Ant Build Tool运行它时,它运行良好。谁能帮我 ?

java web intellij-idea ant
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.