Skip to content

Commit

Permalink
fix: correct enum in minSeverity
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Nov 9, 2024
1 parent 05b79bf commit 7a5bf2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#
#Sat Nov 09 15:07:04 CET 2024
#Sat Nov 09 16:04:41 CET 2024
adjustExistingGradlePluginPlugins=true
description=Defines the java convention in my java projects.
group=se.bjurr.gradle
publishGradlePluginToGradlePortal=false
repoType=GRADLE
tags=conventions
version=0.5.5
version=0.5.6
2 changes: 1 addition & 1 deletion src/main/groovy/se.bjurr.gradle.java-convention.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ pmdMain {

if (getEffectiveJavaConventions().useViolations) {
task violations(type: se.bjurr.violations.gradle.plugin.ViolationsTask) {
minSeverity.set(se.bjurr.violations.lib.model.INFO)
minSeverity.set(se.bjurr.violations.lib.model.SEVERITY.INFO)
detailLevel.set(se.bjurr.violations.git.ViolationsReporterDetailLevel.VERBOSE)
maxViolations.set(getEffectiveJavaConventions().maxViolations)
printViolations.set(true)
Expand Down

0 comments on commit 7a5bf2d

Please sign in to comment.