Files
getting-started/spring-boot/spring-shell/build.gradle
Abdulcelil Cercenazi 50f24940fd add code for spring-shell post (#156)
* add code for spring-shell post

* update the build.gradle file
2022-03-10 06:41:58 +11:00

21 lines
363 B
Groovy

plugins {
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'io.reflectoring'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.shell:spring-shell-starter:2.0.1.RELEASE'
}
tasks.named('test') {
useJUnitPlatform()
}