Skip to content

Commit 4c6c71c

Browse files
authored
Merge pull request #189 from vargenau/update-README-RC2
Update README with RC2
2 parents 16346c0 + 9b980da commit 4c6c71c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Non-security related issues should be added to the [SPDX tools issues list](http
3333
## Syntax
3434
The command line interface of the spdx tools can be used like this:
3535

36-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar <function> <parameters>
36+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar <function> <parameters>
3737

3838
## SPDX format converters
3939
The following converter tools support spdx format:
@@ -49,17 +49,17 @@ The following converter tools support spdx format:
4949

5050
Example to convert a SPDX file from tag to rdf format:
5151

52-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar Convert ../testResources/SPDXTagExample-v2.2.spdx TagToRDF.rdf
52+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar Convert ../testResources/SPDXTagExample-v2.2.spdx TagToRDF.rdf
5353

5454
The file formats can optionally be provided as the 3rd and 4th parameter for the input and output formats respectively. An optional 5th option `excludeLicenseDetails` will not copy the listed license properties to the output file. The following example will copy a JSON format to an RDF Turtle format without including the listed license properties:
5555

56-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar Convert ../testResources/SPDXTagExample-v2.2.spdx TagToRDF.ttl TAG RDFTTL excludeLicenseDetails
56+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar Convert ../testResources/SPDXTagExample-v2.2.spdx TagToRDF.ttl TAG RDFTTL excludeLicenseDetails
5757

5858
To convert from SPDX 2 to SPDX 3.0.1:
5959
* use the file extension `.jsonld.json` or `.jsonld`;
6060
* or add the options for the from and to file types:
6161
```
62-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar Convert hello.spdx hello.spdx.json TAG JSONLD
62+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar Convert hello.spdx hello.spdx.json TAG JSONLD
6363
```
6464

6565
## Compare utilities
@@ -69,13 +69,13 @@ The following tools can be used to compare one or more SPDX documents:
6969

7070
Example to compare multiple SPDX files provided in rdf format and provide a spreadsheet with the results:
7171

72-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar CompareDocs output.xlsx doc1 doc2 ... docN
72+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar CompareDocs output.xlsx doc1 doc2 ... docN
7373

7474
* CompareMultipleSpdxDocs with directory
7575

7676
Example to compare all SPDX documents in a directory "/home/me/spdxdocs" and provide a spreadsheet with the results:
7777

78-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar CompareDocs output.xlsx /home/me/spdxdocs
78+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar CompareDocs output.xlsx /home/me/spdxdocs
7979

8080
## SPDX Viewer
8181
The following tool can be used to "Pretty Print" an SPDX document.
@@ -84,7 +84,7 @@ The following tool can be used to "Pretty Print" an SPDX document.
8484

8585
Sample usage:
8686

87-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar SPDXViewer ../testResources/SPDXRdfExample-v2.2.spdx.rdf
87+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar SPDXViewer ../testResources/SPDXRdfExample-v2.2.spdx.rdf
8888

8989
## Verifier
9090
The following tool can be used to verify an SPDX document:
@@ -93,7 +93,7 @@ The following tool can be used to verify an SPDX document:
9393

9494
Sample usage:
9595

96-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar Verify ../testResources/SPDXRdfExample-v2.2.spdx.rdf
96+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar Verify ../testResources/SPDXRdfExample-v2.2.spdx.rdf
9797

9898
## Generators
9999
The following tool can be used to generate an SPDX verification code from a directory of source files:
@@ -102,7 +102,7 @@ The following tool can be used to generate an SPDX verification code from a dire
102102

103103
Sample usage:
104104

105-
java -jar tools-java-2.0.0-Alpha-jar-with-dependencies.jar GenerateVerificationCode sourceDirectory [ignoredFilesRegex]
105+
java -jar tools-java-2.0.0-RC2-jar-with-dependencies.jar GenerateVerificationCode sourceDirectory [ignoredFilesRegex]
106106

107107
## SPDX Validation Tool
108108
The SPDX Workgroup provides an online interface to validate, compare, and convert SPDX documents in addition to the command line options above. The [SPDX Validation Tool](https://tools.spdx.org/app/validate/) is an all-in-one portal to upload and parse SPDX documents for validation, comparison and conversion and search the SPDX license list.

0 commit comments

Comments
 (0)