upgrade to Spring Boot 4.2.1

This commit is contained in:
Michael Hoennig
2026-06-09 16:05:12 +02:00
parent a030f7abb6
commit 117caf12a9
13 changed files with 103 additions and 102 deletions
@@ -17,7 +17,8 @@ class GitTallyApplication
class CliRunner(
private val factory: IFactory,
private val rootCommand: GitTallyCommand,
) : CommandLineRunner, ExitCodeGenerator {
) : CommandLineRunner,
ExitCodeGenerator {
private var exitCode = 0
override fun run(vararg args: String) {
@@ -15,7 +15,5 @@ import picocli.CommandLine.Command
description = ["Lightweight, declarative CI/CD system"],
)
class GitTallyCommand : Runnable {
override fun run() {
throw CommandLine.ParameterException(CommandLine(this), "Specify a subcommand")
}
override fun run(): Unit = throw CommandLine.ParameterException(CommandLine(this), "Specify a subcommand")
}