Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions affectedmoduledetector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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()
Expand All @@ -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"
}
}

Expand Down