Update Gradle and dependency versions

This commit is contained in:
Tad Fisher
2019-10-16 13:28:09 -07:00
parent e0ebecec21
commit 31c3174e4f
24 changed files with 1228 additions and 894 deletions

View File

@@ -3,10 +3,17 @@ plugins {
idea
kotlin("jvm") version embeddedKotlinVersion apply false
kotlin("kapt") version embeddedKotlinVersion apply false
id("com.github.johnrengelman.shadow") version "5.0.0" apply false
id("com.github.johnrengelman.shadow") version "5.1.0" apply false
id("org.ajoberstar.stutter") version "0.5.0" apply false
}
subprojects {
repositories {
jcenter()
maven { url = uri("https://repo.gradle.org/gradle/libs-releases") }
}
}
allprojects {
plugins.withType<JavaBasePlugin> {
this@allprojects.withConvention(JavaPluginConvention::class) {
@@ -38,7 +45,7 @@ allprojects {
tasks {
wrapper {
gradleVersion = "5.4.1"
gradleVersion = "5.6.2"
distributionType = Wrapper.DistributionType.ALL
}
}