org.springframework.data:spring-data-commons:1.5.1.RELEASE
+--- org.springframework:spring-core:3.1.4.RELEASE (*)
+--- org.springframework:spring-beans:3.1.4.RELEASE (*)
+--- org.slf4j:slf4j-api:1.7.1
\--- org.slf4j:jcl-over-slf4j:1.7.1
虽然Spring数据公共实际上不依赖于slf4j: http://mvnrepository.com/artifact/org.springframework.data/spring-data-commons/1.5.1.RELEASE
为什么gradle会随机添加对slf4j的依赖?
在一些依赖项旁边,我看到'*'符号,它显然表示:
(*) - dependencies omitted (listed previously)
现在为什么会这样?为什么省略一些依赖?
答案 0 :(得分:2)
Gradle不会随机添加依赖项。 spring-data-commons模块从其父POM继承slf4j依赖项。
为了便于阅读,省略了spring-core和spring-beans的依赖关系,因为它们已经在依赖图输出中列出了更高的位置。