feat: upgrade dependencies to use Java 17 and jakarta

This commit is contained in:
mihajlov 2024-10-02 08:26:39 +02:00
parent 5184f86c5e
commit 6059834dcc
16 changed files with 90 additions and 71 deletions

View file

@ -112,11 +112,11 @@ public class DefaultCheck implements Check {
@Override
public Result checkInput(final Input input) {
final CheckAction.Bag t = new CheckAction.Bag(input, createReport());
final Bag t = new Bag(input, createReport());
return runCheckInternal(t);
}
protected Result runCheckInternal(final CheckAction.Bag t) {
protected Result runCheckInternal(final Bag t) {
final long started = System.currentTimeMillis();
log.info("Checking content of {}", t.getInput().getName());
for (final CheckAction action : this.checkSteps) {