According to chapter 48.2 “API and implementation separation”;
dependencies do not leak into the compile classpath of consumers anymore, so you will never accidently depend on a transitive dependency
How am I supposed to declare my dependency as a consumer to make this true?
My setup:
lib (with java-library plugin)
dependencies {
implementation project(':reactivestreams-utils')
implementation 'com.google.guava:guava:21.0'
api "org.reactivestreams:reactive-streams:$reactiveStreamsVersion"
api 'com.netflix.hystrix:hystrix-core:1.5.12'
}
consumer (with java plugin)
dependencies {
compile '<lib>'
}
AFAIK this will make the default resource set part of the consumers compile resource set. Hence including runtime dependencies, and voilà, behold the guts of my library