Skip to content

Commit 9ebf422

Browse files
Merge pull request #2 from officiallysingh/dev
Dev
2 parents 291108e + 6bd43f2 commit 9ebf422

File tree

127 files changed

+3991
-3488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+3991
-3488
lines changed

README.md

Lines changed: 400 additions & 20 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.officiallysingh</groupId>
88
<artifactId>spring-boot-problem-handler</artifactId>
9-
<version>1.4</version>
9+
<version>1.5</version>
1010
<name>spring-boot-problem-handler</name>
1111
<description>Commons exception handler library</description>
1212
<url>https://github.com/officiallysingh/spring-boot-problem-handler</url>
@@ -32,15 +32,14 @@
3232

3333
<properties>
3434
<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>
3636
<spring-cloud.version>2022.0.4</spring-cloud.version>
3737
<jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version>
3838
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
3939
<swagger-request-validator-spring-webmvc.version>2.34.1</swagger-request-validator-spring-webmvc.version>
4040
<commons-collections4.version>4.4</commons-collections4.version>
4141
<guava.version>32.1.2-jre</guava.version>
4242
<failsafe.version>2.4.4</failsafe.version>
43-
<junit.jupiter.version>5.9.1</junit.jupiter.version>
4443

4544
<scm.connection>scm:git:git@github.com:officiallysingh/spring-boot-problem-handler.git</scm.connection>
4645
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
@@ -49,12 +48,13 @@
4948
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
5049
<maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version>
5150
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
51+
52+
<fmt-maven-plugin.version>2.21.1</fmt-maven-plugin.version>
5253
<maven-checkstyle-plugin.version>3.3.0</maven-checkstyle-plugin.version>
53-
<formatter-maven-plugin.version>2.23.0</formatter-maven-plugin.version>
5454

55-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5655
<maven.compiler.source>${java.version}</maven.compiler.source>
5756
<maven.compiler.target>${java.version}</maven.compiler.target>
57+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5858
</properties>
5959

6060
<dependencyManagement>
@@ -171,22 +171,11 @@
171171

172172
<build>
173173
<plugins>
174-
<!-- Format code -->
174+
<!-- Auto format code during compilation -->
175175
<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>
190179
<executions>
191180
<execution>
192181
<goals>

src/main/java/com/ksoot/problem/Problems.java

Lines changed: 0 additions & 305 deletions
This file was deleted.

0 commit comments

Comments
 (0)