我們使用的是gradle-cobertura-plugin,並且有一個包含大量子項目的主項目,但必須爲某些子項目排除cobertura。如何使用gradle cobertura插件排除子項目
project('test-modules:functional-tests') {
cobertura {
skip = true
}
}
但gradle這個抱怨
棄用的動態屬性:上 「n[email protected]6e56dd10」 「跳過」,值:使用以下嘗試「真「
跳過此子項目的方法是什麼?
謝謝
水稻
那是一個警告或錯誤? –
我猜是因爲它說skip不推薦使用,它不會跳過該子項目的任務,所以它不起作用,不僅僅是一個我可以忽略的警告 - 「按需創建屬性(又名動態屬性)已被棄用並計劃在Gradle 2.0中刪除。請閱讀http://gradle.org/docs/current/dsl/org.gradle.api.plugins.ExtraPropertiesExtension.html以獲取有關動態屬性替換的信息。 已棄用的動態屬性:「跳過」在「任務」上:test-modules:功能測試:compileJava'「,值:」true「。」 – Paddy