- Starter for jline ffm terminal provider - Build changes for compiling with gradle toolchains defaulting to jdk22 - spring-shell-sample-ffm which compiles with jdk22 - ci workflow setups jdk 17/22 - Relates #1131
13 lines
320 B
Groovy
13 lines
320 B
Groovy
plugins {
|
|
id 'org.springframework.shell.starter'
|
|
id 'org.springframework.shell.toolchain'
|
|
}
|
|
|
|
description = 'Spring Shell Starter FFM'
|
|
|
|
dependencies {
|
|
management platform(project(':spring-shell-management'))
|
|
api(project(':spring-shell-starters:spring-shell-starter'))
|
|
implementation 'org.jline:jline-terminal-ffm'
|
|
}
|