You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kr...@apache.org on 2019/02/08 14:32:42 UTC

[lucene-solr] branch branch_8_0 updated: SOLR-9515 - Add maven forbiddenapis exclude for copied Hadoop code

This is an automated email from the ASF dual-hosted git repository.

krisden pushed a commit to branch branch_8_0
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_0 by this push:
     new 4038f14  SOLR-9515 - Add maven forbiddenapis exclude for copied Hadoop code
4038f14 is described below

commit 4038f14ac1594f14cc1c83bcfc28e855766f37a4
Author: Kevin Risden <kr...@apache.org>
AuthorDate: Fri Feb 8 09:08:35 2019 -0500

    SOLR-9515 - Add maven forbiddenapis exclude for copied Hadoop code
    
    Signed-off-by: Kevin Risden <kr...@apache.org>
---
 dev-tools/maven/solr/core/src/test/pom.xml.template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-tools/maven/solr/core/src/test/pom.xml.template b/dev-tools/maven/solr/core/src/test/pom.xml.template
index 843a8df..154f904 100644
--- a/dev-tools/maven/solr/core/src/test/pom.xml.template
+++ b/dev-tools/maven/solr/core/src/test/pom.xml.template
@@ -144,6 +144,7 @@
               <excludes>
                 <!-- TODO: remove this - imported code -->
                 <exclude>org/apache/solr/internal/**/*.class</exclude>
+                <exclude>org/apache/hadoop/**</exclude>
               </excludes>
             </configuration>
           </execution>