diff --git a/src/main/java/org/spdx/tools/CompareSpdxDocs.java b/src/main/java/org/spdx/tools/CompareSpdxDocs.java index ad4d49d..6894031 100644 --- a/src/main/java/org/spdx/tools/CompareSpdxDocs.java +++ b/src/main/java/org/spdx/tools/CompareSpdxDocs.java @@ -225,7 +225,7 @@ private static void usage() { System.out.println("Usage: CompareMultipleSpdxDoc output.xls doc1 doc2 ... docN"); System.out.println("where output.xls is a file name for the output spreadsheet file"); System.out.println("and doc1 through docN are file names of valid SPDX documents "); - System.out.println("in either tag/value or RDF/XML format"); + System.out.println("in any of the supported formats format"); } } diff --git a/src/main/java/org/spdx/tools/SpdxConverter.java b/src/main/java/org/spdx/tools/SpdxConverter.java index 4e929a9..765d230 100644 --- a/src/main/java/org/spdx/tools/SpdxConverter.java +++ b/src/main/java/org/spdx/tools/SpdxConverter.java @@ -353,8 +353,8 @@ private static void usage() { System.out.println("SpdxConverter fromFilePath toFilePath [fromFileType] [toFileType]"); System.out.println("\tfromFilePath - File path of the file to convert from"); System.out.println("\ttoFilePath - output file"); - System.out.println("\t[fromFileType] - optional file type of the input file. One of JSON, XLS, XLSX, TAG, RDFXML, RDFTTL, YAML or XML. If not provided the file type will be determined by the file extension"); - System.out.println("\t[toFileType] - optional file type of the output file. One of JSON, XLS, XLSX, TAG, RDFXML, RDFTTL, YAML or XML. If not provided the file type will be determined by the file extension"); + System.out.println("\t[fromFileType] - optional file type of the input file. One of JSON, XLS, XLSX, TAG, RDFXML, RDFTTL, YAML, XML or JSONLD. If not provided the file type will be determined by the file extension"); + System.out.println("\t[toFileType] - optional file type of the output file. One of JSON, XLS, XLSX, TAG, RDFXML, RDFTTL, YAML, XML or JSONLD. If not provided the file type will be determined by the file extension"); System.out.println("\t[excludeLicenseDetails] - If present, listed license and listed exception properties will not be included in the output file"); } diff --git a/src/main/java/org/spdx/tools/SpdxViewer.java b/src/main/java/org/spdx/tools/SpdxViewer.java index 6510b30..269a894 100644 --- a/src/main/java/org/spdx/tools/SpdxViewer.java +++ b/src/main/java/org/spdx/tools/SpdxViewer.java @@ -56,7 +56,7 @@ public static void main(String[] args) { System.err .println("Usage:\n SPDXViewer file [RDFXML|JSON|XLS|XLSX|YAML|TAG] \n" + "where file is the file path to a valid SPDX file\n" - + "and [RDFXML|JSON|XLS|XLSX|YAML|TAG] is an optional file type\n" + + "and [RDFXML|JSON|XLS|XLSX|YAML|TAG|JSONLD] is an optional file type\n" + "if not present, file type of the to file will be used"); return; } diff --git a/src/main/java/org/spdx/tools/Verify.java b/src/main/java/org/spdx/tools/Verify.java index 1b4be91..33d03ae 100644 --- a/src/main/java/org/spdx/tools/Verify.java +++ b/src/main/java/org/spdx/tools/Verify.java @@ -241,7 +241,7 @@ public static List verifyRDFFile(String filePath) throws SpdxVerificatio } public void usage() { - System.out.println("Verify filepath [RDFXML|JSON|XLS|XLSX|YAML|TAG]"); + System.out.println("Verify filepath [RDFXML|JSON|XLS|XLSX|YAML|TAG|JSONLD]"); System.out.println(" where filepath is a path to the SPDX file and [RDFXML|JSON|XLS|XLSX|YAML|TAG] is an optional file type - if not present, file type of the to file will be used"); } }