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 2021/01/21 01:37:01 UTC

[lucene-solr] branch reference_impl_dev updated: @1266 Whoops, wrong/stale paths.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 51fe3d4  @1266 Whoops, wrong/stale paths.
51fe3d4 is described below

commit 51fe3d40f493df17311fb59ed248015fc3808752
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Wed Jan 20 19:36:33 2021 -0600

    @1266 Whoops, wrong/stale paths.
---
 lucene/benchmark/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lucene/benchmark/build.gradle b/lucene/benchmark/build.gradle
index 742ac5a..3504260 100644
--- a/lucene/benchmark/build.gradle
+++ b/lucene/benchmark/build.gradle
@@ -48,8 +48,8 @@ def workDir = file("work")
 task run(type: JavaExec) {
   description "Run a perf test (optional: -PtaskAlg=conf/your-algorithm-file -PmaxHeapSize=1G)"
   main 'org.apache.lucene.benchmark.byTask.Benchmark'
-  classpath sourceSets.main.runtimeClasspath + project.rootProject.files("solr/solrj/build/classes/java/main") +
-          project.rootProject.files("solr/solrj/build/resources/main") + project.rootProject.files("solr/solrj/build/lib/*")
+  classpath sourceSets.main.runtimeClasspath + project.rootProject.files("solr/packaging/build/solr-9.0.0-SNAPSHOT/dist/*") +
+          project.rootProject.files("solr/packaging/build/solr-9.0.0-SNAPSHOT/dist/solrj-lib/*") + project.rootProject.files("solr/reference-branch/bench/solr-benchmark.jar")
   // allow these to be specified on the CLI via -PtaskAlg=  for example
   args = [propertyOrDefault('taskAlg', 'conf/micro-standard.alg')]