如何让eclipse每次保存都执行ant脚本
程序员文章站
2022-03-16 12:06:15
...
有很多情况是使用ant脚本编译war包发布到JBOSS中或者其他web server中,比如我修改一个页面文件的话,还需要重新打包,或者每一次执行ant的build脚本,如何让文件修改后自动执行ant脚本呢,eclipse项目中的.project 文件中找到
<buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> <triggers>full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> <value><project>/.externalToolBuilders/Ant_Builder.launch</value> </dictionary> </arguments> </buildCommand>
找到上面代码添加 auto 就可以了。
<buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> <triggers>auto,full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> <value><project>/.externalToolBuilders/Ant_Builder.launch</value> </dictionary> </arguments> </buildCommand>