Skip to content

Commit 1c70b67

Browse files
committed
Remove plugin management for exec-maven-plugin
Closes gh-20883
1 parent edc154c commit 1c70b67

File tree

2 files changed

+1
-8
lines changed
  • spring-boot-project
    • spring-boot-starters/spring-boot-starter-parent
    • spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc

2 files changed

+1
-8
lines changed

spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle

-7
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,6 @@ publishing.publications.withType(MavenPublication) {
121121
}
122122
}
123123
}
124-
plugin {
125-
delegate.groupId('org.codehaus.mojo')
126-
delegate.artifactId('exec-maven-plugin')
127-
configuration {
128-
delegate.mainClass('${start-class}')
129-
}
130-
}
131124
plugin {
132125
delegate.groupId('org.apache.maven.plugins')
133126
delegate.artifactId('maven-resources-plugin')

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/asciidoc/using.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The parent project provides the following features:
99
This dependency management lets you omit `<version>` tags for those dependencies when used in your own POM.
1010
* An execution of the <<goals.adoc#goals-repackage, `repackage` goal>> with a `repackage` execution id.
1111
* Sensible https://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html[resource filtering].
12-
* Sensible plugin configuration (https://www.mojohaus.org/exec-maven-plugin/[exec plugin], https://github.com/ktoso/maven-git-commit-id-plugin[Git commit ID], and https://maven.apache.org/plugins/maven-shade-plugin/[shade]).
12+
* Sensible plugin configuration (https://github.com/ktoso/maven-git-commit-id-plugin[Git commit ID], and https://maven.apache.org/plugins/maven-shade-plugin/[shade]).
1313
* Sensible resource filtering for `application.properties` and `application.yml` including profile-specific files (for example, `application-dev.properties` and `application-dev.yml`)
1414

1515
Note that, since the `application.properties` and `application.yml` files accept Spring style placeholders (`${...}`), the Maven filtering is changed to use `@..@` placeholders.

0 commit comments

Comments
 (0)