Skip to content

Commit b6e5b99

Browse files
Merge pull request #133 from dropbox/jfein/update-java-8
Upgrade all the things
2 parents c4f6f1f + 999865f commit b6e5b99

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

affectedmoduledetector/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ plugins {
88
apply from: rootProject.file("gradle/jacoco.gradle")
99

1010
java {
11-
sourceCompatibility = JavaVersion.VERSION_1_7
12-
targetCompatibility = JavaVersion.VERSION_1_7
11+
sourceCompatibility = JavaVersion.VERSION_1_8
12+
targetCompatibility = JavaVersion.VERSION_1_8
1313
}
1414

1515
jacoco {
16-
toolVersion = "0.8.7"
16+
toolVersion = "0.8.8"
1717
}
1818

1919
dependencies {
2020
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2121
testImplementation("junit:junit:4.13.2")
22-
testImplementation("com.nhaarman:mockito-kotlin:1.5.0")
23-
testImplementation("com.google.truth:truth:1.0.1")
22+
testImplementation("com.nhaarman:mockito-kotlin:1.6.0")
23+
testImplementation("com.google.truth:truth:1.1.3")
2424
}

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.6.10"
3+
ext.kotlin_version = "1.6.20"
44
repositories {
55
google()
66
mavenCentral()
@@ -9,11 +9,11 @@ buildscript {
99
}
1010
}
1111
dependencies {
12-
classpath "com.android.tools.build:gradle:7.1.2"
12+
classpath "com.android.tools.build:gradle:7.1.3"
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14-
classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.0")
15-
classpath("org.jacoco:org.jacoco.core:0.8.7")
16-
classpath "com.vanniktech:gradle-maven-publish-plugin:0.18.0"
14+
classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.1")
15+
classpath("org.jacoco:org.jacoco.core:0.8.8")
16+
classpath "com.vanniktech:gradle-maven-publish-plugin:0.19.0"
1717
}
1818
}
1919

0 commit comments

Comments
 (0)