Skip to content

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shanshin committed Jun 22, 2022
1 parent 4fa6f95 commit d73156a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions formats/json-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ plugins {
apply(from = rootProject.file("gradle/native-targets.gradle"))
apply(from = rootProject.file("gradle/configure-source-sets.gradle"))

tasks.withType<SourceTask> {
if (this.name == "compileTestKotlinJsLegacy") {
this.exclude("**/PropertyInitializerTest.kt")
}
}

// disable kover tasks because there are no non-test classes in the project
tasks.koverHtmlReport {
enabled = false
Expand Down Expand Up @@ -41,10 +47,4 @@ kotlin {
}
}

tasks.withType<SourceTask> {
if (this.name == "compileTestKotlinJsLegacy") {
this.exclude("**/PropertyInitializerTest.kt")
}
}

project.configureJava9ModuleInfo()

0 comments on commit d73156a

Please sign in to comment.