Skip to content

Commit

Permalink
chore: Suppress detekt warning in exposed-java-time module
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Jul 18, 2023
1 parent 2b7718d commit 105b6c5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions exposed-java-time/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,10 @@ dependencies {
testImplementation(kotlin("test-junit"))
}

//tasks.withType<Detekt>().configureEach {
// // Target version of the generated JVM bytecode. It is used for type resolution.
// jvmTarget = "1.8"
//}

tasks.withType<Test>().configureEach {
if (JavaVersion.VERSION_1_8 > JavaVersion.current())
if (JavaVersion.VERSION_1_8 > JavaVersion.current()) {
jvmArgs = listOf("-XX:MaxPermSize=256m")
}
testLogging {
events.addAll(listOf(TestLogEvent.PASSED, TestLogEvent.FAILED, TestLogEvent.SKIPPED))
showStandardStreams = true
Expand Down

0 comments on commit 105b6c5

Please sign in to comment.