This is probably not the right channel/Slack, but what's the difference between an implementation and a runtimeOnly dependency?
stackoverflow 3
google 2
p
p-schneider
08/14/2018, 7:59 AM
implementation is on the classpath while compiling, runtimeOnly isn't. So if you want to reference any classes from your dependency in your code you have to use implementation or it would fail complaining ~"class not found"
d
Daniel Tam
08/14/2018, 11:38 AM
ahh I see, so I suppose a runtimeOnly dependency is only useful when using reflection