How to get latest sources.jar and javadoc.jar for latest SNAPSHOT aar?

我怕爱的太早我们不能终老 提交于 2021-02-11 12:56:58

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!