Gradle依赖关系解析-仅获取直接依赖关系

时间:2018-09-13 12:50:28

标签: java gradle dependencies build.gradle

我有一个gradle项目,其中包含以下依赖项声明。

dependencies{
        implementation 'com.github.gwtmaterialdesign:gwt-material:2.1'
        implementation 'com.github.gwtmaterialdesign:gwt-material-addins:2.1'
        implementation 'com.github.gwtmaterialdesign:gwt-material-themes:2.1'
        implementation 'com.github.gwtmaterialdesign:gwt-material-table:2.1'

}

但是,gwt-material-2.1取决于gwt-user-2.8.2和gwt-dev-2.8.2。 反过来,它们具有许多我的项目不需要的依赖项。

我可以完全禁用传递依赖关系,并手动添加gwt-user和gwt-dev。但是,我希望它能够自动发生,但仍然只能获取1级依赖。

0 个答案:

没有答案