gpt4 book ai didi

Eclipse 和 Maven : Run goal after a file is changed

转载 作者:行者123 更新时间:2023-12-02 12:18:16 26 4
gpt4 key购买 nike

我在 pom 中配置了一个 Maven 目标,该目标在编译阶段执行。但我还需要在更改特定文件后运行该目标,以使所有内容始终保持最新。

即我想保存文件“objects.xml”并运行目标“transform”以在每次完成更改时应用 XSL。

有没有办法从 Eclipse 内部做到这一点?

我一直在阅读有关该项目的自定义构建器的信息,但这并不涵盖我的情况。

最佳答案

您可以将构建器和自定义 Ant 脚本添加到 Eclipse 工作区。

项目->首选项->构建器

这些构建器可以使用

自动添加到您的项目中
mvn eclipse:eclipse

通过将以下配置添加到您的 pom

            <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalBuildcommands>
<buildcommand>your.custom.Builder</buildcommand>
</additionalBuildcommands>

有关如何执行此操作的更多信息,请参阅 maven-eclipse-plugin 网站

http://maven.apache.org/plugins/maven-eclipse-plugin/

关于Eclipse 和 Maven : Run goal after a file is changed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4760104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com