You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
533 B
Groovy
15 lines
533 B
Groovy
5 years ago
|
plugins {
|
||
5 years ago
|
id "java"
|
||
|
id "org.springframework.boot.conventions"
|
||
5 years ago
|
}
|
||
|
|
||
3 years ago
|
description = "Spring Boot web Thymeleaf smoke test"
|
||
5 years ago
|
|
||
5 years ago
|
dependencies {
|
||
5 years ago
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-thymeleaf"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-validation"))
|
||
5 years ago
|
|
||
5 years ago
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
5 years ago
|
}
|