We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e190384 + fec6260 commit ce69a13Copy full SHA for ce69a13
1 file changed
src/main/java/org/spdx/tools/Main.java
@@ -20,6 +20,7 @@
20
package org.spdx.tools;
21
22
import org.apache.commons.lang3.ArrayUtils;
23
+import org.spdx.library.SpdxModelFactory;
24
25
/**
26
* Dispatch individual tools
@@ -37,7 +38,7 @@ public static void main(String[] args) {
37
38
usage();
39
return;
40
}
-
41
+ SpdxModelFactory.init();
42
String spdxTool = args[0];
43
args = ArrayUtils.removeElement(args, args[0]);
44
if ("Convert".equals(spdxTool)) {
0 commit comments