Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
*/

import org.jreleaser.model.Active
import com.github.spotbugs.snom.Effort

plugins {
`java-library`
`maven-publish`
signing
checkstyle
jacoco
id("com.github.spotbugs") version "4.7.1"
id("com.github.spotbugs") version "6.0.26"
id("org.jreleaser") version "1.18.0"
}

Expand Down Expand Up @@ -240,7 +241,7 @@ subprojects {

// Configure the bug filter for spotbugs.
spotbugs {
setEffort("max")
effort.set(Effort.MAX)
val excludeFile = rootProject.file("gradleConfig/spotbugs/filter.xml")
if (excludeFile.exists()) {
excludeFilter.set(excludeFile)
Expand Down
Loading