2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2022-09-23 23:18:30 +08:00
|
|
|
id "java"
|
2020-02-06 23:04:07 +08:00
|
|
|
id "org.springframework.boot.deployed"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Properties Migrator"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
dependencies {
|
2025-03-01 04:54:04 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-all"))
|
2022-09-23 23:18:30 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"))
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
|
|
testImplementation("org.springframework:spring-test")
|
2022-09-23 23:18:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named("javadoc").configure {
|
|
|
|
// No public or protected classes
|
|
|
|
enabled = false
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|