Archived
0

Made gradle check for dependency updates every build

This commit is contained in:
David Panić
2019-01-07 21:17:52 +01:00
parent bffae3162f
commit 89ac9cd907

View File

@@ -1,5 +1,10 @@
apply plugin: "java"
configurations.all {
// Check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
repositories {
jcenter()
maven { url "https://jitpack.io" }