Skip to content

Commit

Permalink
fix: spotlessKotlinGradleCheck
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Ivanov <[email protected]>
  • Loading branch information
0xivanov committed Dec 16, 2024
1 parent e12d80b commit 6459242
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tck/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,15 @@ tasks.withType<ResolveMainClassName> { setGroup(null) }

// Configure dependency analysis without using Java Modules
tasks.qualityGate { dependsOn(tasks.named("projectHealth")) }

tasks.qualityCheck { dependsOn(tasks.named("projectHealth")) }

dependencyAnalysis {
issues {
onAny {
severity("fail")
exclude("com.google.protobuf:protobuf-javalite")
onUnusedDependencies {
exclude(":sdk")
}
onUnusedDependencies { exclude(":sdk") }
}
}
}

0 comments on commit 6459242

Please sign in to comment.