Bump Spring Boot and tidy up plugins

This commit is contained in:
Dave Syer 2023-01-09 11:55:04 +00:00
parent e8e37b35c3
commit 6580e8b6cf
2 changed files with 4 additions and 16 deletions

View file

@ -21,7 +21,7 @@
"extensions": [
"vscjava.vscode-java-pack",
"redhat.vscode-xml",
"Pivotal.vscode-boot-dev-pack",
"pivotal.vscode-boot-dev-pack",
"mhutchie.git-graph"
],
"forwardPorts": [8080],

18
pom.xml
View file

@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</parent>
<name>petclinic</name>
@ -207,21 +207,9 @@
<!-- Spring Boot Actuator displays build-related information if a git.properties
file is present at the classpath -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<configuration>
<verbose>true</verbose>
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
</configuration>