Skip to content

Commit

Permalink
ignore jsesh version 7.3.1 during dependencyUpdates task
Browse files Browse the repository at this point in the history
  • Loading branch information
JKatzwinkel authored Dec 12, 2023
1 parent 9348231 commit 968891f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,18 @@ application {
mainClass = 'tla.web.App'
}

tasks.named("dependencyUpdates").configure {
resolutionStrategy {
componentSelection {
all {
if (it.candidate.group == 'com.github.rosmord.jsesh' && it.candidate.version == '7.3.1') {
reject("JSesh version ${it.candidate.version} is old, actually...")
}
}
}
}
}

test {
useJUnitPlatform()
finalizedBy 'jacocoTestReport'
Expand Down

0 comments on commit 968891f

Please sign in to comment.