1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: skipping errorprone annotations as the needed error_prone_core
artifact is not packaged in Debian
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2024-10-09
--- a/pom.xml
+++ b/pom.xml
@@ -108,35 +108,6 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.10.1</version>
- <configuration>
- <debug>true</debug>
- <debuglevel>lines,vars</debuglevel>
- <compilerArgs>
- <arg>-XDcompilePolicy=simple</arg>
-<!-- <arg>-Werror</arg>-->
- <arg>-Xlint:all</arg>
- <arg>-Xplugin:ErrorProne \
- -Xep:StringCaseLocaleUsage:ERROR
- </arg>
- </compilerArgs>
- <annotationProcessorPaths>
- <path>
- <groupId>com.google.errorprone</groupId>
- <artifactId>error_prone_core</artifactId>
- <version>${error-prone.version}</version>
- </path>
- <!-- Other annotation processors go here.
- If 'annotationProcessorPaths' is set, processors will no longer be
- discovered on the regular -classpath; see also 'Using Error Prone
- together with other annotation processors' below. -->
- </annotationProcessorPaths>
- </configuration>
- </plugin>
-
- <plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
|