Skip to content

Commit

Permalink
Update to release version of JaCoCo 0.8.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskorn committed Jan 31, 2019
1 parent 6f0963a commit 1e681a7
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,16 @@ package com.charleskorn.kaml.build
import org.gradle.api.Project
import org.gradle.kotlin.dsl.apply
import org.gradle.kotlin.dsl.configure
import org.gradle.kotlin.dsl.maven
import org.gradle.kotlin.dsl.named
import org.gradle.kotlin.dsl.repositories
import org.gradle.testing.jacoco.plugins.JacocoPlugin
import org.gradle.testing.jacoco.plugins.JacocoPluginExtension
import org.gradle.testing.jacoco.tasks.JacocoReport

fun Project.configureJacoco() {
apply<JacocoPlugin>()

repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots")
}

configure<JacocoPluginExtension> {
toolVersion = "0.8.3-SNAPSHOT"
toolVersion = "0.8.3"
}

tasks.named<JacocoReport>("jacocoTestReport") {
Expand Down

0 comments on commit 1e681a7

Please sign in to comment.