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/08/25 15:31:52 UTC

[lucene-solr] 01/09: SOLR-13452: Remove some cruft.

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

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

commit 4648646afcc726b94ba412a0213349f3c8251e56
Author: markrmiller <ma...@apache.org>
AuthorDate: Sun Aug 25 08:22:39 2019 -0500

    SOLR-13452: Remove some cruft.
---
 .../groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy b/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy
index 43a9e46..9d7f1f3 100644
--- a/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy
+++ b/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy
@@ -32,9 +32,6 @@ import org.gradle.api.tasks.TaskAction
 import org.gradle.api.tasks.bundling.Compression
 
 class PackageLuceneSolrDist extends DefaultTask {
-  @Input
-  @Optional
-  List<String> additionalIncludes = Collections.synchronizedList(new ArrayList<>())
 
   PackageLuceneSolrDist() {
     def distDir = 'dist'
@@ -74,12 +71,6 @@ class PackageLuceneSolrDist extends DefaultTask {
         standardIncludes.each {
           include it
         }
-        
-//        for(int i = 0; i < additionalIncludes.size(); i++) {
-//          println 'additional include ' + i
-//          include additionalIncludes.get(i)
-//        }
-        
 
         standardExcludes.each {
           exclude it