You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2019/06/15 17:23:25 UTC

[lucene-solr] branch jira/SOLR-13452_gradle_4 updated: SOLR-13452: Clean up exclude defs.

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

markrmiller pushed a commit to branch jira/SOLR-13452_gradle_4
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/SOLR-13452_gradle_4 by this push:
     new 910f383  SOLR-13452: Clean up exclude defs.
910f383 is described below

commit 910f383832d712a0032a60446c570da6071ff2a9
Author: markrmiller <ma...@apache.org>
AuthorDate: Sat Jun 15 12:23:05 2019 -0500

    SOLR-13452: Clean up exclude defs.
---
 solr/core/build.gradle | 33 ++++++++++++++++++++-------------
 1 file changed, 20 insertions(+), 13 deletions(-)

diff --git a/solr/core/build.gradle b/solr/core/build.gradle
index a727831..b28aa3c 100644
--- a/solr/core/build.gradle
+++ b/solr/core/build.gradle
@@ -201,21 +201,28 @@ forbiddenApisTest {
 missingDeps {
   depExclude  '**/*hadoop*.dot' // we exclude examining hadoop jars because we don't need lots of these deps
   
-  classExclude 'org\\.apache\\.yetus\\.audience\\.InterfaceAudience.*' // annotations
-  classExclude 'javax\\.annotation\\..*' // annotations
-  classExclude 'com\\.google\\.errorprone\\.annotations\\..*' // annotations
-  classExclude 'org\\.fusesource\\.jansi\\..*' // log4j extra functionality we don't use
-  classExclude 'org\\.slf4j\\.ext\\.EventData' // log4j extra functionality we don't use
-  classExclude 'org\\.osgi\\.framework\\..*' // log4j osgi stuff we don't have
+  // annotations
+  classExclude 'org\\.apache\\.yetus\\.audience\\.InterfaceAudience.*'
+  classExclude 'javax\\.annotation\\..*'
+  classExclude 'com\\.google\\.errorprone\\.annotations\\..*'
+  
+  // log4j extra functionality we don't use
+  classExclude 'org\\.fusesource\\.jansi\\..*'
+  classExclude 'org\\.slf4j\\.ext\\.EventData'
+  classExclude 'org\\.osgi\\.framework\\..*'
+  
   classExclude 'org\\.apache\\.log4j\\.jmx\\.HierarchyDynamicMBean' // zookeeper refs this log4j class directly
-  classExclude 'org\\.locationtech\\.jts\\..*' // spatial4j does not yet use jts
-  classExclude 'com\\.esri\\.core.geometry\\..*' // calcite sql stuff we appraently don't need
-  classExclude 'org\\.pentaho\\.aggdes\\..*'  // calcite sql stuff we apparently don't need
-  classExclude 'org\\.apache\\.commons\\.dbcp2\\.BasicDataSource' // calcite jdbc sql stuff we apparently don't need
-  classExclude 'com\\.yahoo\\.sketches\\.hll\\..*' // calcite sql stuff we apparently don't need
+  classExclude 'org\\.locationtech\\.jts\\..*' // spatial4j does not currently use jts (6/2019)
+  
+  // calcite sql stuff we appraently don't need
+  classExclude 'com\\.esri\\.core.geometry\\..*'
+  classExclude 'org\\.pentaho\\.aggdes\\..*'
+  classExclude 'org\\.apache\\.commons\\.dbcp2\\.BasicDataSource'
+  classExclude 'com\\.yahoo\\.sketches\\.hll\\..*'
   
-  classExclude 'io\\.netty\\.buffer\\..*' // zk 3.5.5 added these deps we don't have
-  classExclude 'io\\.netty\\.handler\\.ssl\\.SslHandler' // zk 3.5.5 added these deps we don't have
+  // zk 3.5.5 added these deps we don't have
+  classExclude 'io\\.netty\\.buffer\\..*'
+  classExclude 'io\\.netty\\.handler\\.ssl\\.SslHandler'
 }
 
 unusedDeps {