Skip to content

Commit

Permalink
#121 Add Lombok to Compiler's Annotation Processors
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Strittmatter <[email protected]>
  • Loading branch information
Weltraumschaf committed Feb 16, 2024
1 parent 3676ec6 commit ea2ff5e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<com.fasterxml.jackson.version>2.16.1</com.fasterxml.jackson.version>
<org.springframework.version>5.3.29</org.springframework.version>
<org.mockito.version>5.10.0</org.mockito.version>
<lombok.version>1.18.30</lombok.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -131,7 +132,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -234,6 +235,13 @@
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>

Expand Down

0 comments on commit ea2ff5e

Please sign in to comment.