Skip to content

Commit 64b0a9c

Browse files
Update Spring BootVersion
1 parent 96a596f commit 64b0a9c

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
application-local.properties
22

3+
HELP.md
4+
35
target/
46
!.mvn/wrapper/maven-wrapper.jar
57
!**/src/main/**/target/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
22
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar

pom.xml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46

57
<parent>
68
<groupId>org.springframework.boot</groupId>
79
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.2.3</version>
10+
<version>3.2.5</version>
911
<relativePath />
1012
<!-- lookup parent from repository -->
1113
</parent>
@@ -130,7 +132,16 @@
130132
<groupId>io.spring.javaformat</groupId>
131133
<artifactId>spring-javaformat-maven-plugin</artifactId>
132134
<version>${spring-javaformat-maven-plugin.version}</version>
135+
<executions>
136+
<execution>
137+
<phase>validate</phase>
138+
<inherited>true</inherited>
139+
<goals>
140+
<goal>validate</goal>
141+
</goals>
142+
</execution>
143+
</executions>
133144
</plugin>
134145
</plugins>
135146
</build>
136-
</project>
147+
</project>

0 commit comments

Comments
 (0)