Update build; improve caching; improve tests

This commit is contained in:
Tad Fisher
2020-11-22 16:22:22 -08:00
parent 2ad217b878
commit beb157cf18
83 changed files with 3732 additions and 1771 deletions

View File

@@ -36,12 +36,11 @@ allprojects {
tasks.register("lock") {
doFirst {
assert(gradle.startParameter.isWriteDependencyLocks)
file("buildscript-gradle.lockfile").delete()
file("gradle.lockfile").delete()
}
doLast {
sourceSets.all {
configurations[compileClasspathConfigurationName].resolve()
configurations[runtimeClasspathConfigurationName].resolve()
}
configurations.matching { it.isCanBeResolved}.all { resolve() }
}
}
}
@@ -50,7 +49,7 @@ allprojects {
tasks {
wrapper {
gradleVersion = "6.3"
gradleVersion = "6.8-milestone-3"
distributionType = Wrapper.DistributionType.ALL
}
}