我需要使用Maven在我的.project
文件中添加新的buildCommand。使用Maven在.project中添加buildCommand
我.project
文件(它是由Maven的創建):
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>myProject</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
我要補充以下buildCommand:
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>auto,full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value><project>/.externalToolBuilders/myLuncher.launch</value>
</dictionary>
</arguments>
</buildCommand>
有人有任何想法我怎麼能做這個?
在'maven2Builder'之後插入新的'buildCommand'有什麼問題? – Attila
這個項目和分佈式的.project不在倉庫中,它是由每臺計算機上的maven自動生成的。如果我手動添加新的commandBuilder,更改將僅反映在我的電腦上。 –