spring-boot-gradle-plugin打破了依赖缓存策略

时间:2016-09-08 07:18:52

标签: gradle spring-boot spring-boot-gradle-plugin

我的项目依赖于更改模块(foo,maven SNAPSHOT依赖项)进行调试,foo总是在变化。 在我添加apply plugin 'spring-boot'之后,foo被缓存了很长时间。 如何让更改模块与spring-boot插件一起正常工作?

//my build.gradle file.
apply plugin 'spring-boot' // bad boy
dependencies {
    compile('foo:foo:2.0.0-SNAPSHOT') { changing = true }
}
project.configurations.all {
    resolutionStrategy.cacheChangingModulesFor 1, TimeUnit.SECONDS
    resolutionStrategy.cacheDynamicVersionsFor 1, TimeUnit.SECONDS
}

1 个答案:

答案 0 :(得分:0)

dependencyManagement {
    resolutionStrategy {
        cacheChangingModulesFor 0, 'seconds'
    }
}

more details from github