2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "war"
|
|
|
|
id "org.springframework.boot.conventions"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot web static smoke test"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-14 04:06:35 +08:00
|
|
|
dependencies {
|
2020-01-23 03:24:37 +08:00
|
|
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
runtimeOnly "org.webjars:bootstrap:3.0.3"
|
|
|
|
runtimeOnly "org.webjars:jquery:2.0.3-1"
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|