spring-boot/spring-boot-project/spring-boot-tools/spring-boot-properties-migrator/build.gradle
2022-09-23 16:18:30 +01:00

22 lines
654 B
Groovy

plugins {
id "java"
id "org.springframework.boot.conventions"
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
}