2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2023-04-11 12:14:00 +08:00
|
|
|
id "java-library"
|
2020-01-23 03:24:37 +08:00
|
|
|
id "org.springframework.boot.auto-configuration"
|
2023-04-15 05:55:03 +08:00
|
|
|
id "org.springframework.boot.configuration-properties"
|
2020-01-23 03:24:37 +08:00
|
|
|
id "org.springframework.boot.deployed"
|
|
|
|
id "org.springframework.boot.integration-test"
|
2023-04-11 12:14:00 +08:00
|
|
|
id "org.springframework.boot.optional-dependencies"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Developer Tools"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
configurations {
|
2020-06-16 03:51:51 +08:00
|
|
|
intTestDependencies {
|
|
|
|
extendsFrom dependencyManagement
|
|
|
|
}
|
2022-03-11 16:15:40 +08:00
|
|
|
propertyDefaults
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
propertyDefaults(file("build/resources/main/org/springframework/boot/devtools/env/devtools-property-defaults.properties")) {
|
|
|
|
builtBy(processResources)
|
|
|
|
}
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2025-03-01 04:54:04 +08:00
|
|
|
api(project(":spring-boot-project:spring-boot-all"))
|
2025-03-06 19:44:37 +08:00
|
|
|
api(project(":spring-boot-project:spring-boot-autoconfigure-all"))
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
intTestDependencies(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2025-03-06 19:44:37 +08:00
|
|
|
intTestImplementation(project(":spring-boot-project:spring-boot-autoconfigure-all"))
|
2020-01-23 06:09:17 +08:00
|
|
|
intTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
|
|
intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
2022-09-21 20:21:53 +08:00
|
|
|
intTestImplementation("org.apache.httpcomponents.client5:httpclient5")
|
2020-01-23 06:09:17 +08:00
|
|
|
intTestImplementation("net.bytebuddy:byte-buddy")
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
intTestRuntimeOnly("org.springframework:spring-web")
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2025-03-18 19:11:17 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-jdbc"))
|
2025-03-20 01:07:28 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-jpa"))
|
2025-03-21 17:14:25 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-r2dbc"))
|
2021-10-19 09:30:37 +08:00
|
|
|
optional("io.projectreactor:reactor-core")
|
|
|
|
optional("io.r2dbc:r2dbc-spi")
|
2021-11-13 01:54:32 +08:00
|
|
|
optional("jakarta.servlet:jakarta.servlet-api")
|
2022-01-21 00:09:56 +08:00
|
|
|
optional("org.apache.derby:derbytools")
|
2022-07-09 20:43:25 +08:00
|
|
|
optional("org.hibernate.orm:hibernate-core")
|
2020-01-23 06:09:17 +08:00
|
|
|
optional("org.springframework:spring-jdbc")
|
|
|
|
optional("org.springframework:spring-orm")
|
|
|
|
optional("org.springframework:spring-web")
|
|
|
|
optional("org.springframework.security:spring-security-config")
|
|
|
|
optional("org.springframework.security:spring-security-web")
|
|
|
|
optional("org.springframework.data:spring-data-redis")
|
|
|
|
optional("org.springframework.session:spring-session-core")
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2025-03-19 22:00:24 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-freemarker"))
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
2025-03-03 19:47:30 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
2025-03-21 17:14:25 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-r2dbc")))
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation("ch.qos.logback:logback-classic")
|
|
|
|
testImplementation("com.h2database:h2")
|
|
|
|
testImplementation("com.zaxxer:HikariCP")
|
2022-01-21 00:09:56 +08:00
|
|
|
testImplementation("org.apache.derby:derby")
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation("org.apache.derby:derbyclient")
|
|
|
|
testImplementation("org.apache.tomcat.embed:tomcat-embed-websocket")
|
|
|
|
testImplementation("org.apache.tomcat.embed:tomcat-embed-core")
|
|
|
|
testImplementation("org.apache.tomcat.embed:tomcat-embed-jasper")
|
2023-01-16 19:11:45 +08:00
|
|
|
testImplementation("org.eclipse.jetty.ee10.websocket:jetty-ee10-websocket-jakarta-client")
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation("org.hsqldb:hsqldb")
|
|
|
|
testImplementation("org.postgresql:postgresql")
|
|
|
|
testImplementation("org.springframework:spring-webmvc")
|
|
|
|
testImplementation("org.springframework:spring-websocket")
|
|
|
|
testImplementation("org.springframework.hateoas:spring-hateoas")
|
|
|
|
testImplementation("org.springframework.security:spring-security-test")
|
2020-01-23 03:24:37 +08:00
|
|
|
|
2021-03-11 00:31:58 +08:00
|
|
|
testRuntimeOnly("org.aspectj:aspectjweaver")
|
2020-01-23 06:09:17 +08:00
|
|
|
testRuntimeOnly("org.yaml:snakeyaml")
|
2021-10-19 09:30:37 +08:00
|
|
|
testRuntimeOnly("io.r2dbc:r2dbc-h2")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2025-04-05 22:46:08 +08:00
|
|
|
tasks.register("syncIntTestDependencies", Sync) {
|
2024-10-17 23:41:00 +08:00
|
|
|
destinationDir = file(layout.buildDirectory.dir("dependencies"))
|
2020-01-10 21:48:43 +08:00
|
|
|
from {
|
|
|
|
configurations.intTestDependencies
|
|
|
|
}
|
|
|
|
from jar
|
|
|
|
}
|
|
|
|
|
|
|
|
intTest {
|
2020-08-11 21:33:27 +08:00
|
|
|
dependsOn syncIntTestDependencies
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|