From 4da32cb05d18fa2598a1f1aae8f2ab92c5eb04f6 Mon Sep 17 00:00:00 2001 From: chicoreus Date: Fri, 1 Nov 2024 14:32:06 -0400 Subject: [PATCH] Updating references to version 3.0.0 in Readme and shell scripts. --- README.md | 6 +++--- test-runner.sh | 2 +- test-util.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3e0eb6c..caa61c7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Available from maven central. org.datakurator kurator-ffdq - 2.0.2 + 3.0.0 # Building @@ -112,7 +112,7 @@ For example, to run the utility on the example data provided in this project use After generating FFDQ RDF from the spreadsheet of tests and implementing methods tied to test GUIDs in the DQClass, the test runner utility can be used to produce rdf containing report concepts for describing the results. -Using the options below, run the utility from the directory containing the jar files(s) that include the annotated DQ Classes (e.g. event_date_qc-1.0.4-SNAPSHOT.jar) +Using the options below, run the utility from the directory containing the jar files(s) that include the annotated DQ Classes (e.g. event_date_qc-3.0.5-SNAPSHOT.jar) * **cls \** - Fully qualified name of Java class on the classpath to run tests from * **rdf \** - Input file containing the rdf representation of the tests @@ -146,7 +146,7 @@ To use the annotations, in the project that defines the methods and classes corr org.datakurator kurator-ffdq - 1.0.4-SNAPSHOT + 3.0.0 Provided is a class level annotation that defines an FFDQ Mechanism that implements the test (methods). Example usage of the @Mechanism annotation applied to a class: diff --git a/test-runner.sh b/test-runner.sh index d379ea3..62dac66 100755 --- a/test-runner.sh +++ b/test-runner.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) -java -cp "$parent_path"/target/kurator-ffdq-3.0.0-SNAPSHOT.jar:./* org.datakurator.ffdq.runner.TestRunner "$@" +java -cp "$parent_path"/target/kurator-ffdq-3.0.0.jar:./* org.datakurator.ffdq.runner.TestRunner "$@" diff --git a/test-util.sh b/test-util.sh index da0e301..163758e 100755 --- a/test-util.sh +++ b/test-util.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) -java -cp "$parent_path"/target/kurator-ffdq-3.0.0-SNAPSHOT.jar org.datakurator.ffdq.util.TestUtil "$@" +java -cp "$parent_path"/target/kurator-ffdq-3.0.0.jar org.datakurator.ffdq.util.TestUtil "$@"