Skip to content

Commit f025ab6

Browse files
committed
Switch to new coordinates for Git Commit ID Maven Plugin
Closes gh-29515
1 parent 7f2c346 commit f025ab6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ bom {
249249
]
250250
}
251251
}
252-
library("Git Commit ID Plugin", "4.9.10") {
253-
group("pl.project13.maven") {
252+
library("Git Commit ID Plugin", "5.0.0") {
253+
group("io.github.git-commit-id") {
254254
plugins = [
255-
"git-commit-id-plugin"
255+
"git-commit-id-maven-plugin"
256256
]
257257
}
258258
}

spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/build.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ To use it, add the following declaration for the https://github.com/git-commit-i
6060
<build>
6161
<plugins>
6262
<plugin>
63-
<groupId>pl.project13.maven</groupId>
64-
<artifactId>git-commit-id-plugin</artifactId>
63+
<groupId>io.github.git-commit-id</groupId>
64+
<artifactId>git-commit-id-maven-plugin</artifactId>
6565
</plugin>
6666
</plugins>
6767
</build>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ publishing.publications.withType(MavenPublication) {
133133
}
134134
}
135135
plugin {
136-
delegate.groupId('pl.project13.maven')
137-
delegate.artifactId('git-commit-id-plugin')
136+
delegate.groupId('io.github.git-commit-id')
137+
delegate.artifactId('git-commit-id-maven-plugin')
138138
executions {
139139
execution {
140140
goals {

0 commit comments

Comments
 (0)