Skip to content

Commit

Permalink
fix: fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikRevich committed Oct 6, 2024
1 parent 9202b3e commit bdbf63c
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>com.repoachiever</groupId>
Expand Down Expand Up @@ -275,7 +277,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<version>1.18.34</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -448,7 +450,7 @@
<includes>
<include>src/main/java/**/*.java</include>
</includes>
<endWithNewline/>
<endWithNewline />
<indent>
<tabs>true</tabs>
<spacesPerTab>2</spacesPerTab>
Expand Down Expand Up @@ -530,6 +532,13 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>22</release>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>

Expand Down Expand Up @@ -616,4 +625,4 @@
</plugins>
</pluginManagement>
</build>
</project>
</project>

0 comments on commit bdbf63c

Please sign in to comment.