Use parentheses when declaring dependencies
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`.
This commit is contained in:
@@ -8,21 +8,21 @@ plugins {
|
||||
description = "Spring Boot Buildpack Platform"
|
||||
|
||||
dependencies {
|
||||
api platform(project(":spring-boot-project:spring-boot-parent"))
|
||||
api "com.fasterxml.jackson.core:jackson-databind"
|
||||
api "com.fasterxml.jackson.module:jackson-module-parameter-names"
|
||||
api "net.java.dev.jna:jna-platform"
|
||||
api "org.apache.commons:commons-compress:1.19"
|
||||
api "org.apache.httpcomponents:httpclient"
|
||||
api "org.springframework:spring-core"
|
||||
api(platform(project(":spring-boot-project:spring-boot-parent")))
|
||||
api("com.fasterxml.jackson.core:jackson-databind")
|
||||
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
||||
api("net.java.dev.jna:jna-platform")
|
||||
api("org.apache.commons:commons-compress:1.19")
|
||||
api("org.apache.httpcomponents:httpclient")
|
||||
api("org.springframework:spring-core")
|
||||
|
||||
testImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
||||
testImplementation "com.jayway.jsonpath:json-path"
|
||||
testImplementation "org.assertj:assertj-core"
|
||||
testImplementation "org.testcontainers:testcontainers"
|
||||
testImplementation "org.hamcrest:hamcrest"
|
||||
testImplementation "org.junit.jupiter:junit-jupiter"
|
||||
testImplementation "org.mockito:mockito-core"
|
||||
testImplementation "org.mockito:mockito-junit-jupiter"
|
||||
testImplementation "org.skyscreamer:jsonassert"
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||
testImplementation("com.jayway.jsonpath:json-path")
|
||||
testImplementation("org.assertj:assertj-core")
|
||||
testImplementation("org.testcontainers:testcontainers")
|
||||
testImplementation("org.hamcrest:hamcrest")
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
testImplementation("org.mockito:mockito-core")
|
||||
testImplementation("org.mockito:mockito-junit-jupiter")
|
||||
testImplementation("org.skyscreamer:jsonassert")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user