问题
I am trying to pull dependency from our local network repo with:
configurations.all {
resolutionStrategy { cacheChangingModulesFor 0, 'seconds' }
}
And :
implementation("com.abc.core.library:library:0.6.1-SNAPSHOT") {
changing = true
}
But when the library snapshot is updated with same number, aar file is updated but the sources.jar and javadoc.jar is not updated.
Any solution?
来源:https://stackoverflow.com/questions/65189106/how-to-get-latest-sources-jar-and-javadoc-jar-for-latest-snapshot-aar