You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.4 KiB
68 lines
2.4 KiB
/* |
|
* Copyright 2012-present the original author or authors. |
|
* |
|
* Licensed under the Apache License, Version 2.0 (the License); |
|
* you may not use this file except in compliance with the License. |
|
* You may obtain a copy of the License at |
|
* |
|
* https://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
|
|
plugins { |
|
id "java-library" |
|
id "org.jetbrains.kotlin.jvm" |
|
id "org.springframework.boot.deployed" |
|
id "org.springframework.boot.optional-dependencies" |
|
} |
|
|
|
description = "Spring Boot Test" |
|
|
|
dependencies { |
|
api(project(":core:spring-boot")) |
|
api("org.springframework:spring-test") |
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind") |
|
optional("com.google.code.gson:gson") |
|
optional("com.jayway.jsonpath:json-path") |
|
optional("jakarta.json.bind:jakarta.json.bind-api") |
|
optional("jakarta.servlet:jakarta.servlet-api") |
|
optional("junit:junit") |
|
optional("io.projectreactor.netty:reactor-netty-http") |
|
optional("org.assertj:assertj-core") |
|
optional("org.hamcrest:hamcrest-core") |
|
optional("org.hamcrest:hamcrest-library") |
|
optional("org.junit.jupiter:junit-jupiter-api") |
|
optional("org.mockito:mockito-core") |
|
optional("org.seleniumhq.selenium:htmlunit3-driver") { |
|
exclude(group: "com.sun.activation", module: "jakarta.activation") |
|
} |
|
optional("org.seleniumhq.selenium:selenium-api") |
|
optional("org.skyscreamer:jsonassert") |
|
optional("org.springframework:spring-web") |
|
optional("tools.jackson.core:jackson-databind") |
|
|
|
testImplementation(project(":test-support:spring-boot-test-support")) |
|
testImplementation("ch.qos.logback:logback-classic") |
|
testImplementation("com.google.code.gson:gson") |
|
testImplementation("org.eclipse:yasson") |
|
testImplementation("org.jetbrains.kotlin:kotlin-reflect") |
|
testImplementation("org.jetbrains.kotlin:kotlin-stdlib") |
|
testImplementation("org.slf4j:slf4j-api") |
|
testImplementation("org.springframework:spring-webmvc") |
|
testImplementation("org.testng:testng") |
|
|
|
testRuntimeOnly("org.apache.groovy:groovy") |
|
testRuntimeOnly("org.aspectj:aspectjrt") |
|
testRuntimeOnly("org.aspectj:aspectjweaver") |
|
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") |
|
} |
|
|
|
tasks.named("compileTestJava") { |
|
options.nullability.checking = "tests" |
|
}
|
|
|