mirror of
https://github.com/apache/lucene.git
synced 2025-02-22 10:15:27 +00:00
SOLR-7887: fix maven compilation by turning off annotation processing
This commit is contained in:
parent
3e17933ad8
commit
ef902f9d8e
@ -191,6 +191,10 @@
|
||||
<configuration>
|
||||
<source>${java.compat.version}</source>
|
||||
<target>${java.compat.version}</target>
|
||||
<compilerArgs>
|
||||
<!-- -proc:none was added because of LOG4J2-1925, JDK-8186647, https://github.com/apache/zookeeper/pull/317, JDK-8055048 -->
|
||||
<arg>-proc:none</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
@ -234,6 +238,7 @@
|
||||
<quiet>true</quiet>
|
||||
<additionalparam>-Xdoclint:all</additionalparam>
|
||||
<additionalparam>-Xdoclint:-missing</additionalparam>
|
||||
<additionalparam>-proc:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
Loading…
x
Reference in New Issue
Block a user