Browse Source

Switch to new coordinates for Git Commit ID Maven Plugin

Closes gh-29515
pull/29523/head
Andy Wilkinson 4 years ago
parent
commit
f025ab629a
  1. 6
      spring-boot-project/spring-boot-dependencies/build.gradle
  2. 4
      spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/build.adoc
  3. 4
      spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle

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

@ -249,10 +249,10 @@ bom { @@ -249,10 +249,10 @@ bom {
]
}
}
library("Git Commit ID Plugin", "4.9.10") {
group("pl.project13.maven") {
library("Git Commit ID Plugin", "5.0.0") {
group("io.github.git-commit-id") {
plugins = [
"git-commit-id-plugin"
"git-commit-id-maven-plugin"
]
}
}

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

@ -60,8 +60,8 @@ To use it, add the following declaration for the https://github.com/git-commit-i @@ -60,8 +60,8 @@ To use it, add the following declaration for the https://github.com/git-commit-i
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

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

@ -133,8 +133,8 @@ publishing.publications.withType(MavenPublication) { @@ -133,8 +133,8 @@ publishing.publications.withType(MavenPublication) {
}
}
plugin {
delegate.groupId('pl.project13.maven')
delegate.artifactId('git-commit-id-plugin')
delegate.groupId('io.github.git-commit-id')
delegate.artifactId('git-commit-id-maven-plugin')
executions {
execution {
goals {

Loading…
Cancel
Save