- 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
21 lines
579 B
Groovy
21 lines
579 B
Groovy
plugins {
|
|
id 'org.springframework.shell.sample'
|
|
id 'org.springframework.shell.toolchain'
|
|
}
|
|
|
|
description = 'Spring Shell Sample FFM'
|
|
|
|
tasks.named("bootJar") {
|
|
manifest {
|
|
attributes 'Enable-Native-Access': 'ALL-UNNAMED'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
implementation project(':spring-shell-starters:spring-shell-starter-ffm')
|
|
testImplementation project(':spring-shell-starters:spring-shell-starter-test')
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
}
|