Skip to content

Commit

Permalink
Update kotlin to 1.5.0 and gradle to 7.0 (#3)
Browse files Browse the repository at this point in the history
### What's done:
* Updated kotlin from 1.4.32 to 1.5.0
* Updated gradle from 6.8.3 to 7.0
* Updated jacoco from 0.8.6 to 0.8.7
  • Loading branch information
petertrr authored May 5, 2021
1 parent 7da3ca7 commit 6a00d17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import io.github.petertrr.configureVersioning
import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest

plugins {
kotlin("multiplatform") version "1.4.31"
kotlin("multiplatform") version "1.5.0"
jacoco
id("com.github.ben-manes.versions") version "0.38.0"
}
Expand Down Expand Up @@ -59,7 +59,7 @@ tasks.withType<KotlinJvmTest> {

// configure Jacoco-based code coverage reports for JVM tests executions
jacoco {
toolVersion = "0.8.6"
toolVersion = "0.8.7"
}
val jvmTestTask by tasks.named<KotlinJvmTest>("jvmTest") {
configure<JacocoTaskExtension> {
Expand All @@ -77,4 +77,4 @@ val jacocoTestReportTask by tasks.register<JacocoReport>("jacocoTestReport") {
}
}
jvmTestTask.finalizedBy(jacocoTestReportTask)
jacocoTestReportTask.dependsOn(jvmTestTask)
jacocoTestReportTask.dependsOn(jvmTestTask)
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 6a00d17

Please sign in to comment.