You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
611 B
21 lines
611 B
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 |
|
} |