Skip to content

Commit

Permalink
Updating references to version 3.0.0 in Readme and shell scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
chicoreus committed Nov 1, 2024
1 parent 539ed9f commit 4da32cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Available from maven central.
<dependency>
<groupId>org.datakurator</groupId>
<artifactId>kurator-ffdq</artifactId>
<version>2.0.2</version>
<version>3.0.0</version>
</dependency>

# Building
Expand Down Expand Up @@ -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 \<arg\>** - Fully qualified name of Java class on the classpath to run tests from
* **rdf \<arg\>** - Input file containing the rdf representation of the tests
Expand Down Expand Up @@ -146,7 +146,7 @@ To use the annotations, in the project that defines the methods and classes corr
<dependency>
<groupId>org.datakurator</groupId>
<artifactId>kurator-ffdq</artifactId>
<version>1.0.4-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>
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:
Expand Down
2 changes: 1 addition & 1 deletion test-runner.sh
Original file line number Diff line number Diff line change
@@ -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 "$@"
2 changes: 1 addition & 1 deletion test-util.sh
Original file line number Diff line number Diff line change
@@ -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 "$@"

0 comments on commit 4da32cb

Please sign in to comment.