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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellij IDEA工件,后处理无法正常工作相关的知识,希望对你有一定的参考价值。

在构建工件之后,我想运行一个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运行它时,它运行良好。谁能帮我 ?

答案

确保您已在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

以上是关于Intellij IDEA工件,后处理无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章

Intellij IDEA 抱怨无法解决 Spring Boot 属性,但它们工作正常

IDEA插件开发(14)---IntelliJ 平台工件存储库

在 IntelliJ IDEA 中将外部库添加到工件 jar

JBoss,IntelliJ IDEA,部署炸耳,子部署不起作用

intellij idea蓝屏重启后,代码异常加载,到处报错解决方法

Intellij Idea无法从Controller跳转到视图页面的解决方案