2016-03-06 107 views
3

在使用Java 8的項目中,joda-time是項目依賴項的傳遞依賴項。我想在項目源中強制使用java time而不是joda-timejoda-time類如何限制在Gradle項目的項目源中使用?Gradle:不要讓項目源中使用的傳遞依賴項

+0

沒有用它自己,但它聽起來像[Checkstyle的'IllegalImports'(http://checkstyle.sourceforge.net/config_imports.html#IllegalImport)(或'ImportControl')選項應爲此工作。 Gradle確實有[checkstyle插件](https://docs.gradle.org/current/userguide/checkstyle_plugin.html) – RaGe

回答

0

我還沒有想出用gradle來做這件事的方法。但我正在使用IntelliJ的「排除導入和完成」功能作爲解決方法。它不能完全解決問題,但有助於編碼。我希望這有幫助。

Exclude from Import and Completion in IntelliJ

相關問題