Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个外部工具,每次Intellij 运行 Make时都需要执行。在 Eclipse 中,我可以轻松地修改构建步骤,但我不知道如何在这里实现。
有任何想法吗?
我希望它可以使用外部脚本处理我的资源,而不必在每次测试运行之前手动运行它。
现在可以通过 Ant 或 Maven 实现。
例如,您可以添加build.xml到Ant BuildIntelliJ IDEA 的面板中,创建将使用<exec>任务运行命令行工具的 Ant 目标,右键单击此目标并将其设置为自动运行(Execute on|Before Compilation或After Compilation)。
build.xml
Ant Build
<exec>
Execute on
Before Compilation
After Compilation