13 lines
333 B
Groovy
13 lines
333 B
Groovy
|
plugins {
|
||
|
id "java"
|
||
|
id "org.springframework.boot.conventions"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Bootstrap Registry smoke test"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
}
|