|
32 | 32 |
|
33 | 33 | <properties> |
34 | 34 | <java.version>17</java.version> |
35 | | - <spring-boot.version>3.1.3</spring-boot.version> |
| 35 | + <spring-boot.version>3.1.4</spring-boot.version> |
36 | 36 | <spring-cloud.version>2022.0.4</spring-cloud.version> |
37 | 37 | <jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version> |
38 | 38 | <jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version> |
39 | 39 | <swagger-request-validator-spring-webmvc.version>2.34.1</swagger-request-validator-spring-webmvc.version> |
40 | 40 | <commons-collections4.version>4.4</commons-collections4.version> |
41 | 41 | <guava.version>32.1.2-jre</guava.version> |
42 | 42 | <failsafe.version>2.4.4</failsafe.version> |
43 | | - <junit.jupiter.version>5.9.1</junit.jupiter.version> |
44 | 43 |
|
45 | 44 | <scm.connection>scm:git:git@github.com:officiallysingh/spring-boot-problem-handler.git</scm.connection> |
46 | 45 | <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
|
49 | 48 | <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> |
50 | 49 | <maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version> |
51 | 50 | <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> |
| 51 | + |
| 52 | + <fmt-maven-plugin.version>2.21.1</fmt-maven-plugin.version> |
52 | 53 | <maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version> |
53 | | - <formatter-maven-plugin.version>2.23.0</formatter-maven-plugin.version> |
54 | 54 |
|
55 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
56 | 55 | <maven.compiler.source>${java.version}</maven.compiler.source> |
57 | 56 | <maven.compiler.target>${java.version}</maven.compiler.target> |
| 57 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
58 | 58 | </properties> |
59 | 59 |
|
60 | 60 | <dependencyManagement> |
|
171 | 171 |
|
172 | 172 | <build> |
173 | 173 | <plugins> |
174 | | - <!-- Format code --> |
| 174 | + <!-- Auto format code during compilation --> |
175 | 175 | <plugin> |
176 | | - <groupId>net.revelc.code.formatter</groupId> |
177 | | - <artifactId>formatter-maven-plugin</artifactId> |
178 | | - <version>${formatter-maven-plugin.version}</version> |
179 | | - <configuration> |
180 | | - <configFile> |
181 | | - ${project.basedir}/tooling/eclipse-code-formatter.xml</configFile> |
182 | | - <includes> |
183 | | - <include>**/*.java</include> |
184 | | - <include>pom.xml</include> |
185 | | - </includes> |
186 | | - <!-- <excludes>--> |
187 | | - <!-- <exclude>**/*Test.java</exclude>--> |
188 | | - <!-- </excludes>--> |
189 | | - </configuration> |
| 176 | + <groupId>com.spotify.fmt</groupId> |
| 177 | + <artifactId>fmt-maven-plugin</artifactId> |
| 178 | + <version>${fmt-maven-plugin.version}</version> |
190 | 179 | <executions> |
191 | 180 | <execution> |
192 | 181 | <goals> |
|
0 commit comments