螞蟻警告我這裏很容易螞蟻其所產生的Eclipse報告警告:忽略與評論
<ivy:cachepath pathid="path.pmd" organisation="pmd" module="pmd" revision="4.3" conf="default" inline="true" />
<taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" classpathref="path.pmd" />
報道的問題是:
Description Resource Path Location Type
Reference path.pmd not found. build.xml /MyPrj line 20 Ant Buildfile Problem
現在是很清楚是什麼發生在這裏。 Ant沒有在常青藤的緩存路徑任務中看到path.pmd,並創建警告。 現在我想忽略這個警告。但是,我不想在Eclipse中使用Ant偏好來忽略警告。我知道這很容易,但這也意味着有一天,當我真的有缺失的參考時,我不會得到警告。
螞蟻有評論風格忽略?就像在PMD中一樣,您可以使用// NOPMD忽略指定行上的任何警告。如果有,請賜教:)
如果沒有,是否有任何其他方法可以從Ant構建文件中的此特定行中刪除此警告。
任何幫助,將不勝感激。