Skip to content

Commit

Permalink
Merge pull request #133 from dropbox/jfein/update-java-8
Browse files Browse the repository at this point in the history
Upgrade all the things
  • Loading branch information
joshafeinberg authored Apr 13, 2022
2 parents c4f6f1f + 999865f commit b6e5b99
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
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

0 comments on commit b6e5b99

Please sign in to comment.