- Now switching to use implementation configuration as it works better with aot tooling. - Relates #470
24 lines
450 B
Groovy
24 lines
450 B
Groovy
plugins {
|
|
id 'org.springframework.shell.sample'
|
|
id 'org.springframework.boot'
|
|
id 'org.graalvm.buildtools.native'
|
|
}
|
|
|
|
description = 'Spring Shell Samples'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
implementation project(':spring-shell-starter-jna')
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
springBoot {
|
|
buildInfo()
|
|
}
|
|
|
|
graalvmNative {
|
|
metadataRepository {
|
|
version = "0.1.1"
|
|
}
|
|
}
|