You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2018/04/04 18:48:05 UTC

[1/2] lucene-solr:master: SOLR-7887: fix maven compilation by turning off annotation processing

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x ff13b233e -> 27e5c8dd3
  refs/heads/master 3e17933ad -> ef902f9d8


SOLR-7887: fix maven compilation by turning off annotation processing


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ef902f9d
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ef902f9d
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ef902f9d

Branch: refs/heads/master
Commit: ef902f9d8e5808cb874604990c7df1230e51f28c
Parents: 3e17933
Author: Steve Rowe <sa...@apache.org>
Authored: Wed Apr 4 14:45:09 2018 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Wed Apr 4 14:45:09 2018 -0400

----------------------------------------------------------------------
 dev-tools/maven/pom.xml.template | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ef902f9d/dev-tools/maven/pom.xml.template
----------------------------------------------------------------------
diff --git a/dev-tools/maven/pom.xml.template b/dev-tools/maven/pom.xml.template
index 15b481c..4e21ca0 100644
--- a/dev-tools/maven/pom.xml.template
+++ b/dev-tools/maven/pom.xml.template
@@ -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>


[2/2] lucene-solr:branch_7x: SOLR-7887: fix maven compilation by turning off annotation processing

Posted by sa...@apache.org.
SOLR-7887: fix maven compilation by turning off annotation processing


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/27e5c8dd
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/27e5c8dd
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/27e5c8dd

Branch: refs/heads/branch_7x
Commit: 27e5c8dd31c027e358cd1a780ba155ed7e5822bb
Parents: ff13b23
Author: Steve Rowe <sa...@apache.org>
Authored: Wed Apr 4 14:45:09 2018 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Wed Apr 4 14:45:27 2018 -0400

----------------------------------------------------------------------
 dev-tools/maven/pom.xml.template | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/27e5c8dd/dev-tools/maven/pom.xml.template
----------------------------------------------------------------------
diff --git a/dev-tools/maven/pom.xml.template b/dev-tools/maven/pom.xml.template
index 15b481c..4e21ca0 100644
--- a/dev-tools/maven/pom.xml.template
+++ b/dev-tools/maven/pom.xml.template
@@ -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>