概述
configurations {
all {
exclude module: "junit"
// 默认24小时 这样配置jar包会直接去配置的仓库拿
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
compile.exclude module: "spring-boot-starter-tomcat"
}
apply plugin: 'java-library'
dependencies {
// 方式一 这种方式引进的包 其他项目无法查看该包
implementation ('xxxx') {
changing = true
}
// 方式二 这种方式引进的包 其他项目可查看该包
compile group: 'com.lidig',name: 'surveillance-api',version: '1.0.0-SNAPSHOT', changing: true
}
最后
以上就是淡定口红为你收集整理的gradle配置不缓存,快照模式,每次有新的jar包直接替换的全部内容,希望文章能够帮你解决gradle配置不缓存,快照模式,每次有新的jar包直接替换所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复