From 749243db7e63deb763f7667d04784b8453957d10 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Fri, 28 Jan 2022 21:50:35 +0000 Subject: [PATCH] Must build project before running benchmarks (#9454) * Must build project before running benchmarks That is, it does not test the version downloaded from Maven central. * Update README.md --- benchmarks/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/benchmarks/README.md b/benchmarks/README.md index 9c25c7803d..7f9693ca13 100644 --- a/benchmarks/README.md +++ b/benchmarks/README.md @@ -87,7 +87,17 @@ To run all the benchmark dataset: ### Java: +First build the Java binary in the usual way with Maven: + +``` +$ cd java +$ mvn install +``` + +Assuming that completes successfully, + ``` +$ cd ../benchmarks $ make java ```