2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Test smoke test"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
runtimeOnly("com.h2database:h2")
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
2021-11-13 01:54:32 +08:00
|
|
|
testImplementation("net.sourceforge.htmlunit:htmlunit") {
|
|
|
|
exclude group: "commons-logging", module: "commons-logging"
|
|
|
|
}
|
2020-08-08 22:53:42 +08:00
|
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation("org.seleniumhq.selenium:selenium-api")
|
2021-11-13 01:54:32 +08:00
|
|
|
testImplementation("org.seleniumhq.selenium:htmlunit-driver") {
|
|
|
|
exclude group: "commons-logging", module: "commons-logging"
|
2022-11-08 17:47:27 +08:00
|
|
|
exclude(group: "com.sun.activation", module: "jakarta.activation")
|
2021-11-13 01:54:32 +08:00
|
|
|
}
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|