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/01 15:42:09 UTC

[lucene-solr] 02/03: SOLR-13452: Don't resolve runtimeClasspath.files during configuration.

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

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

commit ee874c9f2544eecb102802ff17ff64c0c5241bb7
Author: markrmiller <ma...@apache.org>
AuthorDate: Sat Jun 1 10:39:16 2019 -0500

    SOLR-13452: Don't resolve runtimeClasspath.files during configuration.
---
 .../main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 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 2936e86..d085636 100644
--- a/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy
+++ b/buildSrc/src/main/groovy/org/apache/lucene/gradle/PackageLuceneSolrDist.groovy
@@ -78,7 +78,7 @@ class PackageLuceneSolrDist extends DefaultTask {
             include "*.jar"
             into (project.relativePath(subproject.projectDir))
           }
-          def files = getFiles(subproject)
+          def files = { getFiles(subproject) }
           from(files) {
             include "*.jar"
             into (project.relativePath(subproject.projectDir) + "/lib")
@@ -112,7 +112,7 @@ class PackageLuceneSolrDist extends DefaultTask {
             include "*.jar"
             into (project.relativePath(subproject.projectDir))
           }
-          def files = getFiles(subproject)
+          def files = { getFiles(subproject) }
           from(files) {
             include "*.jar"
             into (project.relativePath(subproject.projectDir) + "/lib")