From 93bb52c601be696b5fd008f4e4013ee68b72b4b9 Mon Sep 17 00:00:00 2001 From: Tomoko Uchida Date: Sun, 28 Nov 2021 21:22:07 +0900 Subject: [PATCH] set group to 'run' benchmark task (#481) --- lucene/benchmark/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lucene/benchmark/build.gradle b/lucene/benchmark/build.gradle index df8c16748f5..67b1644f3de 100644 --- a/lucene/benchmark/build.gradle +++ b/lucene/benchmark/build.gradle @@ -49,7 +49,8 @@ sourceSets { } task run(type: JavaExec) { - description "Run a perf test (optional: -PtaskAlg=conf/your-algorithm-file -PmaxHeapSize=1G)" + description "Run a perf test (optional: -PtaskAlg=conf/your-algorithm-file -PmaxHeapSize=1G). Before running this, you need to download the dataset the benchmark run against (e.g., by getReuters task). See dataset download tasks for more details." + group "Utility launchers" mainClass = 'org.apache.lucene.benchmark.byTask.Benchmark' classpath sourceSets.main.runtimeClasspath