显然,出于某种原因,gradle 似乎认为我的“spring data”依赖于 slf4j。这是 gradle 打印出来的依赖图
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 data commons 实际上并不依赖 slf4j: http ://mvnrepository.com/artifact/org.springframework.data/spring-data-commons/1.5.1.RELEASE
为什么 gradle 会随机添加对 slf4j 的依赖?
在一些依赖项旁边,我还看到了“*”符号,它显然表示:
(*) - dependencies omitted (listed previously)
为什么会这样?为什么省略了一些依赖项?