Skip to content

Commit

Permalink
Add annotation processors for compiler avoidance.
Browse files Browse the repository at this point in the history
This is done to speed up builds by avoiding recompilation of all sources
when making non-ABI changes. This also optimizes the Gradle Enterprise
build caching infrastructure.
  • Loading branch information
erichaagdev committed Oct 5, 2023
1 parent 7898426 commit 614eebb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,19 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 614eebb

Please sign in to comment.