
Update all dependencies declarations to use the form `scope(reference)` rather than `scope reference`. Prior to this commit we declared dependencies without parentheses unless we were forced to add them due to an `exclude`.
15 lines
443 B
Groovy
15 lines
443 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot.conventions"
|
|
}
|
|
|
|
description = "Spring Boot property validation smoke test"
|
|
|
|
dependencies {
|
|
annotationProcessor(project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
}
|