43 lines
1.6 KiB
Groovy
43 lines
1.6 KiB
Groovy
plugins {
|
|
id "dev.adamko.dokkatoo-html"
|
|
id "java-library"
|
|
id "org.jetbrains.kotlin.jvm"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Web Server Test"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-test"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-http-codec"))
|
|
optional(project(":spring-boot-project:spring-boot-web-server"))
|
|
optional("jakarta.servlet:jakarta.servlet-api")
|
|
optional("org.apache.httpcomponents.client5:httpclient5")
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
|
optional("org.springframework:spring-test")
|
|
optional("org.springframework:spring-web")
|
|
optional("org.springframework:spring-webflux")
|
|
optional("org.htmlunit:htmlunit") {
|
|
exclude(group: "commons-logging", module: "commons-logging")
|
|
}
|
|
optional("org.seleniumhq.selenium:htmlunit3-driver") {
|
|
exclude(group: "commons-logging", module: "commons-logging")
|
|
exclude(group: "com.sun.activation", module: "jakarta.activation")
|
|
}
|
|
optional("org.seleniumhq.selenium:selenium-api")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation("io.mockk:mockk")
|
|
testImplementation("io.projectreactor.netty:reactor-netty-http")
|
|
testImplementation("org.springframework:spring-webmvc")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|