├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── docker_deploy.yml │ └── docs.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASE-CHECKLIST.md ├── dependency-check-supress.xml ├── examples └── org │ └── spdx │ └── examples │ ├── ExistingSpdxDocumentV2Compat.java │ ├── ExpandedLicenseExampleV3.java │ ├── FullSpdxV3Example.java │ ├── SimpleSpdxDocumentV2Compat.java │ └── SpdxExtensionExample.java ├── pom.xml ├── resources ├── log4j2.xml ├── spdx-schema-v2.2.json ├── spdx-schema-v2.3.json ├── spdx-schema-v3.0.0.json └── spdx-schema-v3.0.1.json ├── scripts └── tools-java-wrapper.sh ├── src ├── main │ ├── java │ │ └── org │ │ │ └── spdx │ │ │ └── tools │ │ │ ├── CompareSpdxDocs.java │ │ │ ├── GenerateVerificationCode.java │ │ │ ├── InvalidFileNameException.java │ │ │ ├── Main.java │ │ │ ├── MatchingStandardLicenses.java │ │ │ ├── OnlineToolException.java │ │ │ ├── RdfSchemaToJsonContext.java │ │ │ ├── RdfSchemaToJsonSchema.java │ │ │ ├── RdfSchemaToXsd.java │ │ │ ├── SpdxConverter.java │ │ │ ├── SpdxConverterException.java │ │ │ ├── SpdxToolsHelper.java │ │ │ ├── SpdxVerificationException.java │ │ │ ├── SpdxVersion.java │ │ │ ├── SpdxViewer.java │ │ │ ├── Verify.java │ │ │ ├── compare │ │ │ ├── AbstractFileCompareSheet.java │ │ │ ├── AbstractSheet.java │ │ │ ├── CompareHelper.java │ │ │ ├── CreatorSheet.java │ │ │ ├── DocumentAnnotationSheet.java │ │ │ ├── DocumentRelationshipSheet.java │ │ │ ├── DocumentSheet.java │ │ │ ├── ExternalReferencesSheet.java │ │ │ ├── ExtractedLicenseSheet.java │ │ │ ├── FileAnnotationSheet.java │ │ │ ├── FileAttributionSheet.java │ │ │ ├── FileChecksumSheet.java │ │ │ ├── FileCommentSheet.java │ │ │ ├── FileConcludedSheet.java │ │ │ ├── FileContributorsSheet.java │ │ │ ├── FileCopyrightSheet.java │ │ │ ├── FileLicenseCommentsSheet.java │ │ │ ├── FileLicenseInfoSheet.java │ │ │ ├── FileNoticeSheet.java │ │ │ ├── FileRelationshipSheet.java │ │ │ ├── FileSpdxIdSheet.java │ │ │ ├── FileTypeSheet.java │ │ │ ├── MultiDocumentSpreadsheet.java │ │ │ ├── NormalizedFileNameComparator.java │ │ │ ├── PackageSheet.java │ │ │ ├── SnippetSheet.java │ │ │ ├── VerificationSheet.java │ │ │ └── package-info.java │ │ │ └── schema │ │ │ ├── AbstractOwlRdfConverter.java │ │ │ ├── OwlToJsonContext.java │ │ │ ├── OwlToJsonSchema.java │ │ │ ├── OwlToXsd.java │ │ │ ├── SchemaException.java │ │ │ └── package-info.java │ └── resources │ │ └── project.properties └── test │ └── java │ └── org │ └── spdx │ └── tools │ ├── CompareSpdxDocsTest.java │ ├── GenerateVerificationCodeTest.java │ ├── LatestSchemaVersionTest.java │ ├── SpdxConverterTestV2.java │ ├── SpdxConverterTestV3.java │ ├── VerifyTest.java │ └── schema │ └── OwlToXSDTest.java ├── testResources ├── BadJSON.spdx.json ├── DifferentFileComment.spdx.yaml ├── SPDXJSONExample-v2.2.spdx.json ├── SPDXJSONExample-v2.3-with-exception.spdx.json ├── SPDXJSONExample-v2.3.spdx.json ├── SPDXJSONExample-wrongversion.spdx.json ├── SPDXJsonLDExample-v3.0.1.json ├── SPDXRdfExample-v2.2.spdx.rdf ├── SPDXRdfExample-v2.3.spdx.rdf ├── SPDXSpreadsheetExample-v2.2.xls ├── SPDXSpreadsheetExample-v2.2.xlsx ├── SPDXSpreadsheetExample-v2.3.xls ├── SPDXSpreadsheetExample-v2.3.xlsx ├── SPDXTagExample-v2.2-warning.spdx ├── SPDXTagExample-v2.2.spdx ├── SPDXTagExample-v2.3.spdx ├── SPDXWrongVersion.spdx.json ├── SPDXXMLExample-v2.2.spdx.xml ├── SPDXXMLExample-v2.3.spdx.xml ├── SPDXYAMLExample-2.2.spdx.yaml ├── SPDXYAMLExample-2.3.spdx.yaml ├── double.jsonld ├── sourcefiles │ ├── AbstractFileCompareSheet.java │ ├── AbstractSheet.java │ ├── CompareHelper.java │ ├── CreatorSheet.java │ ├── DocumentAnnotationSheet.java │ ├── DocumentRelationshipSheet.java │ ├── DocumentSheet.java │ ├── ExternalReferencesSheet.java │ ├── ExtractedLicenseSheet.java │ ├── FileAnnotationSheet.java │ ├── FileAttributionSheet.java │ ├── FileChecksumSheet.java │ ├── FileCommentSheet.java │ ├── FileConcludedSheet.java │ ├── FileContributorsSheet.java │ ├── FileCopyrightSheet.java │ ├── FileLicenseCommentsSheet.java │ ├── FileLicenseInfoSheet.java │ ├── FileNoticeSheet.java │ ├── FileRelationshipSheet.java │ ├── FileSpdxIdSheet.java │ ├── FileTypeSheet.java │ ├── MultiDocumentSpreadsheet.java │ ├── NormalizedFileNameComparator.java │ ├── PackageSheet.java │ ├── SnippetSheet.java │ ├── VerificationSheet.java │ └── package-info.java └── spdx-2-2-revision-8-ontology.owl.xml └── tools-java.iml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/.github/workflows/docker_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/RELEASE-CHECKLIST.md -------------------------------------------------------------------------------- /dependency-check-supress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/dependency-check-supress.xml -------------------------------------------------------------------------------- /examples/org/spdx/examples/ExistingSpdxDocumentV2Compat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/examples/org/spdx/examples/ExistingSpdxDocumentV2Compat.java -------------------------------------------------------------------------------- /examples/org/spdx/examples/ExpandedLicenseExampleV3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/examples/org/spdx/examples/ExpandedLicenseExampleV3.java -------------------------------------------------------------------------------- /examples/org/spdx/examples/FullSpdxV3Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/examples/org/spdx/examples/FullSpdxV3Example.java -------------------------------------------------------------------------------- /examples/org/spdx/examples/SimpleSpdxDocumentV2Compat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/examples/org/spdx/examples/SimpleSpdxDocumentV2Compat.java -------------------------------------------------------------------------------- /examples/org/spdx/examples/SpdxExtensionExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/examples/org/spdx/examples/SpdxExtensionExample.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/pom.xml -------------------------------------------------------------------------------- /resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/resources/log4j2.xml -------------------------------------------------------------------------------- /resources/spdx-schema-v2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/resources/spdx-schema-v2.2.json -------------------------------------------------------------------------------- /resources/spdx-schema-v2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/resources/spdx-schema-v2.3.json -------------------------------------------------------------------------------- /resources/spdx-schema-v3.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/resources/spdx-schema-v3.0.0.json -------------------------------------------------------------------------------- /resources/spdx-schema-v3.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/resources/spdx-schema-v3.0.1.json -------------------------------------------------------------------------------- /scripts/tools-java-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/scripts/tools-java-wrapper.sh -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/CompareSpdxDocs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/CompareSpdxDocs.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/GenerateVerificationCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/GenerateVerificationCode.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/InvalidFileNameException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/InvalidFileNameException.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/Main.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/MatchingStandardLicenses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/MatchingStandardLicenses.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/OnlineToolException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/OnlineToolException.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/RdfSchemaToJsonContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/RdfSchemaToJsonContext.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/RdfSchemaToJsonSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/RdfSchemaToJsonSchema.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/RdfSchemaToXsd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/RdfSchemaToXsd.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxConverter.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxConverterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxConverterException.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxToolsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxToolsHelper.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxVerificationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxVerificationException.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxVersion.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/SpdxViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/SpdxViewer.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/Verify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/Verify.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/AbstractFileCompareSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/AbstractFileCompareSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/AbstractSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/AbstractSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/CompareHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/CompareHelper.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/CreatorSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/CreatorSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/DocumentAnnotationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/DocumentAnnotationSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/DocumentRelationshipSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/DocumentRelationshipSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/DocumentSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/DocumentSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/ExternalReferencesSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/ExternalReferencesSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/ExtractedLicenseSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/ExtractedLicenseSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileAnnotationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileAnnotationSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileAttributionSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileAttributionSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileChecksumSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileChecksumSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileCommentSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileCommentSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileConcludedSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileConcludedSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileContributorsSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileContributorsSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileCopyrightSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileCopyrightSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileLicenseCommentsSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileLicenseCommentsSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileLicenseInfoSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileLicenseInfoSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileNoticeSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileNoticeSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileRelationshipSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileRelationshipSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileSpdxIdSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileSpdxIdSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/FileTypeSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/FileTypeSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/MultiDocumentSpreadsheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/MultiDocumentSpreadsheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/NormalizedFileNameComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/NormalizedFileNameComparator.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/PackageSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/PackageSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/SnippetSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/SnippetSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/VerificationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/VerificationSheet.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/compare/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/compare/package-info.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/AbstractOwlRdfConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/AbstractOwlRdfConverter.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/OwlToJsonContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/OwlToJsonContext.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/OwlToJsonSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/OwlToJsonSchema.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/OwlToXsd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/OwlToXsd.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/SchemaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/SchemaException.java -------------------------------------------------------------------------------- /src/main/java/org/spdx/tools/schema/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/java/org/spdx/tools/schema/package-info.java -------------------------------------------------------------------------------- /src/main/resources/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/main/resources/project.properties -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/CompareSpdxDocsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/CompareSpdxDocsTest.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/GenerateVerificationCodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/GenerateVerificationCodeTest.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/LatestSchemaVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/LatestSchemaVersionTest.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/SpdxConverterTestV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/SpdxConverterTestV2.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/SpdxConverterTestV3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/SpdxConverterTestV3.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/VerifyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/VerifyTest.java -------------------------------------------------------------------------------- /src/test/java/org/spdx/tools/schema/OwlToXSDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/src/test/java/org/spdx/tools/schema/OwlToXSDTest.java -------------------------------------------------------------------------------- /testResources/BadJSON.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/BadJSON.spdx.json -------------------------------------------------------------------------------- /testResources/DifferentFileComment.spdx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/DifferentFileComment.spdx.yaml -------------------------------------------------------------------------------- /testResources/SPDXJSONExample-v2.2.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXJSONExample-v2.2.spdx.json -------------------------------------------------------------------------------- /testResources/SPDXJSONExample-v2.3-with-exception.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXJSONExample-v2.3-with-exception.spdx.json -------------------------------------------------------------------------------- /testResources/SPDXJSONExample-v2.3.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXJSONExample-v2.3.spdx.json -------------------------------------------------------------------------------- /testResources/SPDXJSONExample-wrongversion.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXJSONExample-wrongversion.spdx.json -------------------------------------------------------------------------------- /testResources/SPDXJsonLDExample-v3.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXJsonLDExample-v3.0.1.json -------------------------------------------------------------------------------- /testResources/SPDXRdfExample-v2.2.spdx.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXRdfExample-v2.2.spdx.rdf -------------------------------------------------------------------------------- /testResources/SPDXRdfExample-v2.3.spdx.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXRdfExample-v2.3.spdx.rdf -------------------------------------------------------------------------------- /testResources/SPDXSpreadsheetExample-v2.2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXSpreadsheetExample-v2.2.xls -------------------------------------------------------------------------------- /testResources/SPDXSpreadsheetExample-v2.2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXSpreadsheetExample-v2.2.xlsx -------------------------------------------------------------------------------- /testResources/SPDXSpreadsheetExample-v2.3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXSpreadsheetExample-v2.3.xls -------------------------------------------------------------------------------- /testResources/SPDXSpreadsheetExample-v2.3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXSpreadsheetExample-v2.3.xlsx -------------------------------------------------------------------------------- /testResources/SPDXTagExample-v2.2-warning.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXTagExample-v2.2-warning.spdx -------------------------------------------------------------------------------- /testResources/SPDXTagExample-v2.2.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXTagExample-v2.2.spdx -------------------------------------------------------------------------------- /testResources/SPDXTagExample-v2.3.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXTagExample-v2.3.spdx -------------------------------------------------------------------------------- /testResources/SPDXWrongVersion.spdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXWrongVersion.spdx.json -------------------------------------------------------------------------------- /testResources/SPDXXMLExample-v2.2.spdx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXXMLExample-v2.2.spdx.xml -------------------------------------------------------------------------------- /testResources/SPDXXMLExample-v2.3.spdx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXXMLExample-v2.3.spdx.xml -------------------------------------------------------------------------------- /testResources/SPDXYAMLExample-2.2.spdx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXYAMLExample-2.2.spdx.yaml -------------------------------------------------------------------------------- /testResources/SPDXYAMLExample-2.3.spdx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/SPDXYAMLExample-2.3.spdx.yaml -------------------------------------------------------------------------------- /testResources/double.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/double.jsonld -------------------------------------------------------------------------------- /testResources/sourcefiles/AbstractFileCompareSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/AbstractFileCompareSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/AbstractSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/AbstractSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/CompareHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/CompareHelper.java -------------------------------------------------------------------------------- /testResources/sourcefiles/CreatorSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/CreatorSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/DocumentAnnotationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/DocumentAnnotationSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/DocumentRelationshipSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/DocumentRelationshipSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/DocumentSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/DocumentSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/ExternalReferencesSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/ExternalReferencesSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/ExtractedLicenseSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/ExtractedLicenseSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileAnnotationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileAnnotationSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileAttributionSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileAttributionSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileChecksumSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileChecksumSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileCommentSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileCommentSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileConcludedSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileConcludedSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileContributorsSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileContributorsSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileCopyrightSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileCopyrightSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileLicenseCommentsSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileLicenseCommentsSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileLicenseInfoSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileLicenseInfoSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileNoticeSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileNoticeSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileRelationshipSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileRelationshipSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileSpdxIdSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileSpdxIdSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/FileTypeSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/FileTypeSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/MultiDocumentSpreadsheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/MultiDocumentSpreadsheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/NormalizedFileNameComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/NormalizedFileNameComparator.java -------------------------------------------------------------------------------- /testResources/sourcefiles/PackageSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/PackageSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/SnippetSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/SnippetSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/VerificationSheet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/VerificationSheet.java -------------------------------------------------------------------------------- /testResources/sourcefiles/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/sourcefiles/package-info.java -------------------------------------------------------------------------------- /testResources/spdx-2-2-revision-8-ontology.owl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/testResources/spdx-2-2-revision-8-ontology.owl.xml -------------------------------------------------------------------------------- /tools-java.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/tools-java/HEAD/tools-java.iml --------------------------------------------------------------------------------