You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2020/07/20 09:43:35 UTC

[lucene-solr] branch master updated: Import Download task's plugin explicitly.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8cf84a3  Import Download task's plugin explicitly.
8cf84a3 is described below

commit 8cf84a372543b42af936b3e4b59c7ab2872ce099
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Mon Jul 20 10:57:13 2020 +0200

    Import Download task's plugin explicitly.
---
 lucene/benchmark/build.gradle | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lucene/benchmark/build.gradle b/lucene/benchmark/build.gradle
index 4b34cce..d7c2457 100644
--- a/lucene/benchmark/build.gradle
+++ b/lucene/benchmark/build.gradle
@@ -15,8 +15,10 @@
  * limitations under the License.
  */
 
-apply plugin: 'java'
-// NOT a 'java-library'.  Maybe 'application' but seems too limiting.
+plugins {
+  id "java"
+  id "de.undercouch.download"
+}
 
 description = 'System for benchmarking Lucene'