2024-09-24 14:26:32 -07:00

21 lines
611 B
Groovy

plugins {
id "java"
id "org.springframework.boot.deployed"
}
description = "Spring Boot Properties Migrator"
dependencies {
implementation(project(":spring-boot-project:spring-boot"))
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"))
testImplementation(project(":spring-boot-project:spring-boot-test"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.assertj:assertj-core")
testImplementation("org.springframework:spring-test")
}
tasks.named("javadoc").configure {
// No public or protected classes
enabled = false
}