Skip to content

Commit c6756ff

Browse files
newtorka-d
andauthored
fix: [DevOps] Remove annotation processing for local compilation (#725)
Co-authored-by: Alexander Dümont <alexander_duemont@web.de>
1 parent 5a82a34 commit c6756ff

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

pom.xml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@
124124
<snakeyaml.version>2.4</snakeyaml.version>
125125
<commons-codec.version>1.18.0</commons-codec.version>
126126
<jsr305.optional>true</jsr305.optional>
127+
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
128+
<maven.compiler.proc>full</maven.compiler.proc>
127129
</properties>
128130
<dependencyManagement>
129131
<dependencies>
@@ -748,7 +750,7 @@
748750
<plugin>
749751
<groupId>org.apache.maven.plugins</groupId>
750752
<artifactId>maven-compiler-plugin</artifactId>
751-
<version>3.13.0</version>
753+
<version>${maven-compiler-plugin.version}</version>
752754
<configuration>
753755
<release>${java.version}</release>
754756
<showWarnings>true</showWarnings>
@@ -759,12 +761,6 @@
759761
<arg>-Xlint:all</arg>
760762
<arg>-Xlint:-processing</arg>
761763
</compilerArgs>
762-
<annotationProcessorPaths>
763-
<annotationProcessorPath>
764-
<groupId>org.projectlombok</groupId>
765-
<artifactId>lombok</artifactId>
766-
</annotationProcessorPath>
767-
</annotationProcessorPaths>
768764
</configuration>
769765
</plugin>
770766
<plugin>

0 commit comments

Comments
 (0)