diff --git a/affectedmoduledetector/build.gradle b/affectedmoduledetector/build.gradle index 4bb3f89f..4c36dc48 100644 --- a/affectedmoduledetector/build.gradle +++ b/affectedmoduledetector/build.gradle @@ -8,17 +8,17 @@ plugins { apply from: rootProject.file("gradle/jacoco.gradle") java { - sourceCompatibility = JavaVersion.VERSION_1_7 - targetCompatibility = JavaVersion.VERSION_1_7 + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 } jacoco { - toolVersion = "0.8.7" + toolVersion = "0.8.8" } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" testImplementation("junit:junit:4.13.2") - testImplementation("com.nhaarman:mockito-kotlin:1.5.0") - testImplementation("com.google.truth:truth:1.0.1") + testImplementation("com.nhaarman:mockito-kotlin:1.6.0") + testImplementation("com.google.truth:truth:1.1.3") } diff --git a/build.gradle b/build.gradle index 5c7d6224..ec1bda6a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "1.6.10" + ext.kotlin_version = "1.6.20" repositories { google() mavenCentral() @@ -9,11 +9,11 @@ buildscript { } } dependencies { - classpath "com.android.tools.build:gradle:7.1.2" + classpath "com.android.tools.build:gradle:7.1.3" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.0") - classpath("org.jacoco:org.jacoco.core:0.8.7") - classpath "com.vanniktech:gradle-maven-publish-plugin:0.18.0" + classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.1") + classpath("org.jacoco:org.jacoco.core:0.8.8") + classpath "com.vanniktech:gradle-maven-publish-plugin:0.19.0" } }