diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 11:15:04 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 11:28:08 +0100 |
| commit | 129a86fa562b50c9ca43579dfd598596567dae53 (patch) | |
| tree | 09088e5beeaf92e9e4131385a6229f77887d2450 /simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts | |
| parent | ef83b0ff68f023a64a7e3446b23e4a6f02aca841 (diff) | |
Extract Jacoco convention from Kotlin library convention
This commit extracts the configuration for Jacoco into a separate
convention file.
Diffstat (limited to 'simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts')
| -rw-r--r-- | simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts b/simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts index f9d8a966..405235f0 100644 --- a/simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts +++ b/simulator/buildSrc/src/main/kotlin/kotlin-library-convention.gradle.kts @@ -28,7 +28,6 @@ plugins { `java-library` kotlin("jvm") id("org.jlleitschuh.gradle.ktlint") - jacoco } /* Project configuration */ @@ -45,10 +44,6 @@ kotlin { explicitApi() } -jacoco { - toolVersion = "0.8.6" -} - tasks.withType<KotlinCompile>().configureEach { kotlinOptions.jvmTarget = "1.8" kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn" @@ -58,10 +53,3 @@ tasks.test { useJUnitPlatform() reports.html.isEnabled = true } - - -tasks.jacocoTestReport { - reports { - html.isEnabled = true - } -} |
