11 changed files with 84 additions and 19 deletions
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
/* |
||||
* 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.springframework.boot.optional-dependencies" |
||||
} |
||||
|
||||
description = "Spring Boot Actuator Testing Support" |
||||
|
||||
dependencies { |
||||
api(project(":spring-boot-project:spring-boot-actuator")) |
||||
api(project(":spring-boot-project:spring-boot-autoconfigure")) |
||||
api(project(":spring-boot-project:spring-boot-http-converter")) |
||||
api(project(":spring-boot-project:spring-boot-jackson")) |
||||
api(project(":spring-boot-project:spring-boot-jersey")) |
||||
api(project(":spring-boot-project:spring-boot-reactor-netty")) |
||||
api(project(":spring-boot-project:spring-boot-test")) |
||||
api(project(":spring-boot-project:spring-boot-tomcat")) |
||||
api(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) |
||||
api(project(":spring-boot-project:spring-boot-webflux")) |
||||
api(project(":spring-boot-project:spring-boot-webmvc")) |
||||
api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") |
||||
api("com.jayway.jsonpath:json-path") |
||||
api("org.assertj:assertj-core") |
||||
api("org.awaitility:awaitility") |
||||
api("org.hamcrest:hamcrest-core") |
||||
api("org.hamcrest:hamcrest-library") |
||||
api("org.junit.jupiter:junit-jupiter") |
||||
api("org.mockito:mockito-core") |
||||
api("org.mockito:mockito-junit-jupiter") |
||||
api("org.skyscreamer:jsonassert") |
||||
api("org.springframework:spring-core") |
||||
api("org.springframework:spring-test") |
||||
api("org.springframework:spring-core-test") |
||||
|
||||
compileOnly("org.junit.platform:junit-platform-engine") |
||||
compileOnly("org.junit.platform:junit-platform-launcher") |
||||
compileOnly("org.springframework:spring-context") |
||||
} |
||||
0
spring-boot-project/spring-boot-actuator-integration-tests/src/testFixtures/java/org/springframework/boot/actuate/endpoint/web/test/WebEndpointTestInvocationContextProvider.java → spring-boot-project/spring-boot-actuator-test-support/src/main/java/org/springframework/boot/actuate/endpoint/web/test/WebEndpointTestInvocationContextProvider.java
0
spring-boot-project/spring-boot-actuator-integration-tests/src/testFixtures/java/org/springframework/boot/actuate/endpoint/web/test/WebEndpointTestInvocationContextProvider.java → spring-boot-project/spring-boot-actuator-test-support/src/main/java/org/springframework/boot/actuate/endpoint/web/test/WebEndpointTestInvocationContextProvider.java
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
/* |
||||
* 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. |
||||
*/ |
||||
|
||||
/** |
||||
* Support for testing endpoints against one or more of the web endpoint infrastructure |
||||
* implementations. |
||||
*/ |
||||
package org.springframework.boot.actuate.endpoint.web.test; |
||||
Loading…
Reference in new issue