Skip to content

Commit

Permalink
Exclude plexus-utils in favor of Maven's build-in version
Browse files Browse the repository at this point in the history
Closes gh-41248
  • Loading branch information
wilkinsona committed Jun 26, 2024
1 parent c5dfcc5 commit 07442f8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies {
asciidoctorExtensions("io.spring.asciidoctor:spring-asciidoctor-extensions-section-ids")

compileOnly("org.apache.maven.plugin-tools:maven-plugin-annotations")
compileOnly("org.sonatype.plexus:plexus-build-api")
compileOnly("org.apache.maven:maven-core") {
exclude(group: "javax.annotation", module: "javax.annotation-api")
exclude(group: "javax.inject", module: "javax.inject")
Expand All @@ -34,6 +33,9 @@ dependencies {
exclude(group: "javax.enterprise", module: "cdi-api")
exclude(group: "javax.inject", module: "javax.inject")
}
implementation("org.sonatype.plexus:plexus-build-api") {
exclude(group: "org.codehaus.plexus:plexus-utils")
}
implementation("org.springframework:spring-core")
implementation("org.springframework:spring-context")

Expand All @@ -59,8 +61,6 @@ dependencies {
mavenRepository(project(path: ":spring-boot-project:spring-boot-devtools", configuration: "mavenRepository"))
mavenRepository(project(path: ":spring-boot-project:spring-boot-docker-compose", configuration: "mavenRepository"))

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")
Expand Down

0 comments on commit 07442f8

Please sign in to comment.