Connect build to ge.spring.io.

Add annotation processors for compiler avoidance and disable build caching for tests.

Closes #673
This commit is contained in:
Eric Haag
2023-09-15 14:45:45 -05:00
committed by Mark Paluch
parent 7851b82dc1
commit cec144ea0b
8 changed files with 153 additions and 2 deletions

View File

@@ -57,4 +57,27 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>