|
|
|
@ -15,11 +15,6 @@ configurations {
|
|
|
|
|
dependencies {
|
|
|
|
|
compileOnly("org.apache.maven.plugin-tools:maven-plugin-annotations")
|
|
|
|
|
compileOnly("org.sonatype.plexus:plexus-build-api")
|
|
|
|
|
compileOnly("org.apache.maven.shared:maven-common-artifact-filters") {
|
|
|
|
|
exclude(group: "javax.annotation", module: "javax.annotation-api")
|
|
|
|
|
exclude(group: "javax.enterprise", module: "cdi-api")
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
|
}
|
|
|
|
|
compileOnly("org.apache.maven:maven-core") {
|
|
|
|
|
exclude(group: "javax.annotation", module: "javax.annotation-api")
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
@ -30,9 +25,14 @@ dependencies {
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
implementation("org.springframework:spring-context")
|
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
|
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
|
|
|
|
|
implementation("org.apache.maven.shared:maven-common-artifact-filters") {
|
|
|
|
|
exclude(group: "javax.annotation", module: "javax.annotation-api")
|
|
|
|
|
exclude(group: "javax.enterprise", module: "cdi-api")
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
|
}
|
|
|
|
|
implementation("org.springframework:spring-context")
|
|
|
|
|
|
|
|
|
|
intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))
|
|
|
|
|
intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
|
|
|
|
@ -58,6 +58,15 @@ dependencies {
|
|
|
|
|
|
|
|
|
|
runtimeOnly("org.sonatype.plexus:plexus-build-api")
|
|
|
|
|
|
|
|
|
|
testImplementation("org.apache.maven:maven-core") {
|
|
|
|
|
exclude(group: "javax.annotation", module: "javax.annotation-api")
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
|
}
|
|
|
|
|
testImplementation("org.apache.maven.shared:maven-common-artifact-filters") {
|
|
|
|
|
exclude(group: "javax.annotation", module: "javax.annotation-api")
|
|
|
|
|
exclude(group: "javax.enterprise", module: "cdi-api")
|
|
|
|
|
exclude(group: "javax.inject", module: "javax.inject")
|
|
|
|
|
}
|
|
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
|
testImplementation("org.mockito:mockito-core")
|
|
|
|
|