From 2e41bd6c48362ca1a5ea3de1a4e032adc94f61ab Mon Sep 17 00:00:00 2001 From: Chin Yeung Li Date: Fri, 30 Aug 2024 13:13:01 +0800 Subject: [PATCH] Update link references of ownership from nexB to aboutcode-org Signed-off-by: Chin Yeung Li --- .ort.yml | 4 +- Dockerfile | 2 +- examples/license-classifications.yml | 2 +- .../src/main/kotlin/VulnerableCode.kt | 4 +- .../kotlin/utils/PythonInspectorExtensions.kt | 2 +- plugins/scanners/dos/README.md | 2 +- .../scancode/src/main/kotlin/ScanCode.kt | 2 +- .../main/kotlin/ScanCodeResultModelMapper.kt | 2 +- .../scancode-3.0.2_mime-types-2.1.18.json | 2 +- .../scancode-3.2.1rc2_h2database-1.4.200.json | 2 +- ...xpression-parse_no-license-references.json | 44 ++++++------- .../scancode-32.1.0_from_file-reference.json | 64 +++++++++---------- ...output-format-1.0.0_mime-types-2.1.18.json | 24 +++---- ...output-format-2.0.0_mime-types-2.1.18.json | 22 +++---- ...output-format-3.0.0_mime-types-2.1.18.json | 24 +++---- .../src/test/assets/scancode-with-issues.json | 12 ++-- .../clearly-defined/scancode-3.2.2.json | 2 +- .../scancode-3.0.2_mime-types-2.1.18.json | 2 +- utils/spdx/src/main/kotlin/Utils.kt | 2 +- website/docs/configuration/license-texts.md | 2 +- website/docs/getting-started/tutorial.md | 4 +- website/docs/tools/advisor.md | 2 +- website/docs/tools/scanner.md | 2 +- 23 files changed, 115 insertions(+), 115 deletions(-) diff --git a/.ort.yml b/.ort.yml index e394e49177a73..e3e561147212a 100644 --- a/.ort.yml +++ b/.ort.yml @@ -43,7 +43,7 @@ resolutions: issues: - message: "ERROR: Timeout after 300 seconds while scanning file 'reporter-web-app/public/index.html'." reason: "SCANNER_ISSUE" - comment: >- + comment: >- The error can be ignored because the file does contain relevant license information. - message: "ERROR: Timeout after 300 seconds while scanning file 'scanner/src/test/assets/aws-java-sdk-core-1.11.160_scancode-2.9.7.json'." reason: "SCANNER_ISSUE" @@ -175,7 +175,7 @@ curations: This directory contains all non-official SPDX license ids which are used to generate open source notices. SPDX and ScanCode license files are licensed under CC0-1.0, see https://github.com/spdx/license-list-XML/blob/master/package.json#L33 and - https://github.com/nexB/scancode-toolkit/blame/develop/README.rst#L168. + https://github.com/aboutcode-org/scancode-toolkit/blame/develop/README.rst#L168. - path: "utils/spdx/src/main/resources/licenses/**" concluded_license: "CC0-1.0" reason: "DATA_OF" diff --git a/Dockerfile b/Dockerfile index 78896dddf1b48..33621ee03c2d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -394,7 +394,7 @@ RUN mkdir -p $DOTNET_HOME \ fi RUN mkdir -p $DOTNET_HOME/bin \ - && curl -L https://github.com/nexB/nuget-inspector/releases/download/v$NUGET_INSPECTOR_VERSION/nuget-inspector-v$NUGET_INSPECTOR_VERSION-linux-x64.tar.gz \ + && curl -L https://github.com/aboutcode-org/nuget-inspector/releases/download/v$NUGET_INSPECTOR_VERSION/nuget-inspector-v$NUGET_INSPECTOR_VERSION-linux-x64.tar.gz \ | tar --strip-components=1 -C $DOTNET_HOME/bin -xz FROM scratch AS dotnet diff --git a/examples/license-classifications.yml b/examples/license-classifications.yml index 7b3832eb9a1a6..6e2c07c1cfc69 100644 --- a/examples/license-classifications.yml +++ b/examples/license-classifications.yml @@ -1,6 +1,6 @@ --- # Example license-classifications.yml based on categorization from -# https://github.com/nexB/scancode-toolkit/commit/ed644e4 +# https://github.com/aboutcode-org/scancode-toolkit/commit/ed644e4 # # To demonstrate how one can insert a custom written offer # include-source-code-offer-in-notice-file has been set to diff --git a/plugins/advisors/vulnerable-code/src/main/kotlin/VulnerableCode.kt b/plugins/advisors/vulnerable-code/src/main/kotlin/VulnerableCode.kt index 51d3ca7d8a166..0780de97cd33e 100644 --- a/plugins/advisors/vulnerable-code/src/main/kotlin/VulnerableCode.kt +++ b/plugins/advisors/vulnerable-code/src/main/kotlin/VulnerableCode.kt @@ -55,7 +55,7 @@ private const val BULK_REQUEST_SIZE = 100 /** * An [AdviceProvider] implementation that obtains security vulnerability information from a - * [VulnerableCode][https://github.com/nexB/vulnerablecode] instance. + * [VulnerableCode][https://github.com/aboutcode-org/vulnerablecode] instance. * * This [AdviceProvider] offers the following configuration options: * @@ -155,7 +155,7 @@ class VulnerableCode(override val descriptor: PluginDescriptor, config: Vulnerab if (scores.isEmpty()) return listOf(VulnerabilityReference(sourceUri, null, null)) return scores.map { // VulnerableCode returns MODERATE instead of MEDIUM in case of cvssv3.1_qr, see: - // https://github.com/nexB/vulnerablecode/issues/1186 + // https://github.com/aboutcode-org/vulnerablecode/issues/1186 val severity = if (it.scoringSystem == "cvssv3.1_qr" && it.value == "MODERATE") "MEDIUM" else it.value VulnerabilityReference(sourceUri, it.scoringSystem, severity) diff --git a/plugins/package-managers/python/src/main/kotlin/utils/PythonInspectorExtensions.kt b/plugins/package-managers/python/src/main/kotlin/utils/PythonInspectorExtensions.kt index 551f9d8d1b072..418ac038aba54 100644 --- a/plugins/package-managers/python/src/main/kotlin/utils/PythonInspectorExtensions.kt +++ b/plugins/package-managers/python/src/main/kotlin/utils/PythonInspectorExtensions.kt @@ -147,7 +147,7 @@ internal fun List.toOrtPackages(): Set = declaredLicenses = declaredLicenses, declaredLicensesProcessed = declaredLicensesProcessed, // Only use the first line of the description because the descriptions provided by python-inspector are - // currently far too long, see: https://github.com/nexB/python-inspector/issues/74 + // currently far too long, see: https://github.com/aboutcode-org/python-inspector/issues/74 description = pkg.description.lineSequence().firstOrNull { it.isNotBlank() }.orEmpty(), homepageUrl = pkg.homepageUrl.orEmpty(), binaryArtifact = getArtifact(".whl"), diff --git a/plugins/scanners/dos/README.md b/plugins/scanners/dos/README.md index b9fb3ad97a858..13b8cef2f4747 100644 --- a/plugins/scanners/dos/README.md +++ b/plugins/scanners/dos/README.md @@ -24,5 +24,5 @@ ort: The `DOS_FRONTEND_URL` is meant to point to the Clearance UI which can be used to inspect scan results and to create license finding curations for use with the [DOS Package Configuration Provider]. [DOS]: https://github.com/doubleopen-project/dos -[ScanCode]: https://github.com/nexB/scancode-toolkit +[ScanCode]: https://github.com/aboutcode-org/scancode-toolkit [DOS Package Configuration Provider]: ../../package-configuration-providers/dos diff --git a/plugins/scanners/scancode/src/main/kotlin/ScanCode.kt b/plugins/scanners/scancode/src/main/kotlin/ScanCode.kt index 4dba0345d6ff8..10af3b97b0364 100644 --- a/plugins/scanners/scancode/src/main/kotlin/ScanCode.kt +++ b/plugins/scanners/scancode/src/main/kotlin/ScanCode.kt @@ -46,7 +46,7 @@ import org.semver4j.RangesListFactory import org.semver4j.Semver /** - * A wrapper for [ScanCode](https://github.com/nexB/scancode-toolkit). + * A wrapper for [ScanCode](https://github.com/aboutcode-org/scancode-toolkit). * * This scanner can be configured in [ScannerConfiguration.config] using the key "ScanCode". It offers the following * configuration [options][PluginConfiguration.options]: diff --git a/plugins/scanners/scancode/src/main/kotlin/ScanCodeResultModelMapper.kt b/plugins/scanners/scancode/src/main/kotlin/ScanCodeResultModelMapper.kt index 1ef53c24d8bf5..553bc7cb0f52c 100644 --- a/plugins/scanners/scancode/src/main/kotlin/ScanCodeResultModelMapper.kt +++ b/plugins/scanners/scancode/src/main/kotlin/ScanCodeResultModelMapper.kt @@ -87,7 +87,7 @@ fun ScanCodeResult.toScanSummary(preferFileLicense: Boolean = false): ScanSummar val licensesWithoutReferences = file.licenses.filter { it !is LicenseEntry.Version3 || it.fromFile == null // Note that "fromFile" contains the name of the input directory, see - // https://github.com/nexB/scancode-toolkit/issues/3712. + // https://github.com/aboutcode-org/scancode-toolkit/issues/3712. || inputPath.resolveSibling(it.fromFile) == inputPath.resolve(file.path) // Check if input is a single file. || it.fromFile == inputPath.name diff --git a/plugins/scanners/scancode/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json b/plugins/scanners/scancode/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json index 3050130a5ccb0..1ae7487536d11 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json @@ -17,7 +17,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2019-08-13T074443.361209", "end_timestamp": "2019-08-13T074524.131834", "message": null, diff --git a/plugins/scanners/scancode/src/test/assets/scancode-3.2.1rc2_h2database-1.4.200.json b/plugins/scanners/scancode/src/test/assets/scancode-3.2.1rc2_h2database-1.4.200.json index fb41f96bff040..e24ab1ffab8ac 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-3.2.1rc2_h2database-1.4.200.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-3.2.1rc2_h2database-1.4.200.json @@ -15,7 +15,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2021-01-28T132916.946903", "end_timestamp": "2021-01-28T133435.622217", "duration": 318.67532992362976, diff --git a/plugins/scanners/scancode/src/test/assets/scancode-32.0.8_spdx-expression-parse_no-license-references.json b/plugins/scanners/scancode/src/test/assets/scancode-32.0.8_spdx-expression-parse_no-license-references.json index 54d5fbfb8470b..c37cdd1c00edf 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-32.0.8_spdx-expression-parse_no-license-references.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-32.0.8_spdx-expression-parse_no-license-references.json @@ -14,7 +14,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2023-12-08T123156.694438", "end_timestamp": "2023-12-08T123226.376157", "output_format_version": "3.0.0", @@ -175,7 +175,7 @@ "license_expression": "generic-cla AND mit", "rule_identifier": "generic-cla_and_mit_1.RULE", "rule_relevance": 99, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE" } ], "identifier": "generic_cla_and_mit-e300baf2-7b55-d28f-e79e-32577191b77a" @@ -260,7 +260,7 @@ "license_expression": "mit", "rule_identifier": "mit_27.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE" }, { "score": 100.0, @@ -272,7 +272,7 @@ "license_expression": "mit", "rule_identifier": "mit.LICENSE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" } ], "identifier": "mit-f7452287-cb8f-dace-dd8d-3e62743150a2" @@ -336,7 +336,7 @@ "license_expression": "mit", "rule_identifier": "mit_30.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE" } ], "identifier": "mit-3fce6ea2-8abd-6c6b-3ede-a37af7c6efee" @@ -427,7 +427,7 @@ "license_expression": "json", "rule_identifier": "json_5.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE" }, { "score": 100.0, @@ -439,7 +439,7 @@ "license_expression": "json", "rule_identifier": "json_5.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE" } ], "identifier": "json-981d329b-9269-f448-9907-b92bd76e2ea9" @@ -457,7 +457,7 @@ "license_expression": "bsd-simplified", "rule_identifier": "spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE" }, { "score": 100.0, @@ -469,7 +469,7 @@ "license_expression": "bsd-simplified", "rule_identifier": "bsd-simplified_136.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE" }, { "score": 100.0, @@ -481,7 +481,7 @@ "license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0", "rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" }, { "score": 100.0, @@ -493,7 +493,7 @@ "license_expression": "gpl-2.0", "rule_identifier": "gpl-2.0_1074.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE" }, { "score": 50.0, @@ -505,7 +505,7 @@ "license_expression": "gcc-linking-exception-2.0", "rule_identifier": "spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE", "rule_relevance": 50, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE" }, { "score": 100.0, @@ -517,7 +517,7 @@ "license_expression": "cc-by-3.0", "rule_identifier": "cc-by-3.0_106.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-3.0_106.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-3.0_106.RULE" }, { "score": 100.0, @@ -529,7 +529,7 @@ "license_expression": "mit", "rule_identifier": "mit_1003.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1003.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1003.RULE" } ], "identifier": "bsd_simplified_and_gpl_2_0_with_gcc_linking_exception_2_0_and_gpl_2_0_and_gcc_linking_exception_2_0_and_cc_by_3_0_and_mit-db00c765-2211-b14d-f300-f5fb460e6090" @@ -614,7 +614,7 @@ "license_expression": "bsd-new", "rule_identifier": "bsd-new_10.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" }, { "score": 100.0, @@ -626,7 +626,7 @@ "license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0", "rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" }, { "score": 100.0, @@ -638,7 +638,7 @@ "license_expression": "bsd-new", "rule_identifier": "bsd-new_10.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" }, { "score": 100.0, @@ -650,7 +650,7 @@ "license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0", "rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" }, { "score": 100.0, @@ -662,7 +662,7 @@ "license_expression": "bsd-new", "rule_identifier": "bsd-new_10.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_10.RULE" }, { "score": 100.0, @@ -674,7 +674,7 @@ "license_expression": "gpl-2.0 WITH gcc-linking-exception-2.0", "rule_identifier": "gpl-2.0_with_gcc-linking-exception-2.0_1.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE" } ], "identifier": "bsd_new_and_gpl_2_0_with_gcc_linking_exception_2_0-37d4e857-c03b-b6a1-484e-665eb994f0f7" @@ -692,7 +692,7 @@ "license_expression": "gpl-2.0", "rule_identifier": "gpl-2.0_1074.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1074.RULE" }, { "score": 50.0, @@ -704,7 +704,7 @@ "license_expression": "gcc-linking-exception-2.0", "rule_identifier": "spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE", "rule_relevance": 50, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE" } ], "identifier": "gpl_2_0_and_gcc_linking_exception_2_0-6190574f-5a15-04e2-81cf-952b34277f33" diff --git a/plugins/scanners/scancode/src/test/assets/scancode-32.1.0_from_file-reference.json b/plugins/scanners/scancode/src/test/assets/scancode-32.1.0_from_file-reference.json index a0136d29869b4..4737d0e5ea71c 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-32.1.0_from_file-reference.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-32.1.0_from_file-reference.json @@ -14,7 +14,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2024-03-28T110041.376392", "end_timestamp": "2024-03-28T110044.147354", "output_format_version": "3.1.0", @@ -54,7 +54,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" } ] }, @@ -76,7 +76,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_285.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_285.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_285.RULE" }, { "license_expression": "public-domain", @@ -90,7 +90,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_431.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_431.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_431.RULE" }, { "license_expression": "lgpl-2.1-plus", @@ -104,7 +104,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1-plus_393.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE" }, { "license_expression": "gpl-2.0-plus", @@ -118,7 +118,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "gpl-2.0-plus_991.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE" }, { "license_expression": "public-domain", @@ -132,7 +132,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_428.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_428.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_428.RULE" }, { "license_expression": "public-domain", @@ -146,7 +146,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_429.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_429.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_429.RULE" }, { "license_expression": "public-domain AND gpl-2.0-plus AND gpl-3.0-plus", @@ -160,7 +160,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE" }, { "license_expression": "public-domain", @@ -174,7 +174,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_305.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_305.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_305.RULE" }, { "license_expression": "public-domain", @@ -188,7 +188,7 @@ "match_coverage": 100.0, "rule_relevance": 70, "rule_identifier": "public-domain_bare_words.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE" }, { "license_expression": "other-permissive AND other-copyleft", @@ -202,7 +202,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "other-permissive_and_other-copyleft_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE" }, { "license_expression": "public-domain-disclaimer", @@ -216,7 +216,7 @@ "match_coverage": 96.69, "rule_relevance": 100, "rule_identifier": "public-domain-disclaimer_72.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE" }, { "license_expression": "lgpl-2.1 AND gpl-2.0 AND gpl-3.0", @@ -230,7 +230,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE" }, { "license_expression": "public-domain", @@ -244,7 +244,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_427.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_427.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_427.RULE" }, { "license_expression": "lgpl-2.1", @@ -258,7 +258,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" } ] } @@ -303,7 +303,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_285.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_285.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_285.RULE" }, { "license_expression": "public-domain", @@ -317,7 +317,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_431.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_431.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_431.RULE" }, { "license_expression": "lgpl-2.1-plus", @@ -331,7 +331,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1-plus_393.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE" }, { "license_expression": "gpl-2.0-plus", @@ -345,7 +345,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "gpl-2.0-plus_991.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE" }, { "license_expression": "public-domain", @@ -359,7 +359,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_428.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_428.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_428.RULE" }, { "license_expression": "public-domain", @@ -373,7 +373,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_429.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_429.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_429.RULE" }, { "license_expression": "public-domain AND gpl-2.0-plus AND gpl-3.0-plus", @@ -387,7 +387,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE" }, { "license_expression": "public-domain", @@ -401,7 +401,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_305.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_305.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_305.RULE" }, { "license_expression": "public-domain", @@ -415,7 +415,7 @@ "match_coverage": 100.0, "rule_relevance": 70, "rule_identifier": "public-domain_bare_words.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE" }, { "license_expression": "other-permissive AND other-copyleft", @@ -429,7 +429,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "other-permissive_and_other-copyleft_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE" }, { "license_expression": "public-domain-disclaimer", @@ -443,7 +443,7 @@ "match_coverage": 96.69, "rule_relevance": 100, "rule_identifier": "public-domain-disclaimer_72.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE" }, { "license_expression": "lgpl-2.1 AND gpl-2.0 AND gpl-3.0", @@ -457,7 +457,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE" }, { "license_expression": "public-domain", @@ -471,7 +471,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "public-domain_427.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_427.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_427.RULE" }, { "license_expression": "lgpl-2.1", @@ -485,7 +485,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" } ], "identifier": "public_domain_and_lgpl_2_1_plus_and_gpl_2_0_plus_and__public_domain_and_gpl_2_0_plus_and_gpl_3_0_plus__and__other_permissive_and_other_copyleft__and_public_domain_disclaimer_and_lgpl_2_1-4b11d70c-b401-ad7e-7036-9e3ec1ab19a9", @@ -543,7 +543,7 @@ "match_coverage": 100.0, "rule_relevance": 100, "rule_identifier": "lgpl-2.1.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE" } ], "identifier": "lgpl_2_1-9de8e5f7-3171-8985-b4d6-a1ffddf63f3a" @@ -582,4 +582,4 @@ "scan_errors": [] } ] -} \ No newline at end of file +} diff --git a/plugins/scanners/scancode/src/test/assets/scancode-output-format-1.0.0_mime-types-2.1.18.json b/plugins/scanners/scancode/src/test/assets/scancode-output-format-1.0.0_mime-types-2.1.18.json index 09ea6356668e9..233e8ddf45647 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-output-format-1.0.0_mime-types-2.1.18.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-output-format-1.0.0_mime-types-2.1.18.json @@ -15,7 +15,7 @@ "--strip-root": true, "--timeout": "0.07" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2023-12-01T155457.480696", "end_timestamp": "2023-12-01T155458.826319", "output_format_version": "1.0.0", @@ -26,7 +26,7 @@ ], "extra_data": { "spdx_license_list_version": "3.14", - "OUTDATED": "WARNING: Outdated ScanCode Toolkit version! You are using an outdated version of ScanCode Toolkit: 30.1.0 released on: 2021-09-24. A new version is available with important improvements including bug and security fixes, updated license, copyright and package detection, and improved scanning accuracy. Please download and install the latest version of ScanCode. Visit https://github.com/nexB/scancode-toolkit/releases for details.", + "OUTDATED": "WARNING: Outdated ScanCode Toolkit version! You are using an outdated version of ScanCode Toolkit: 30.1.0 released on: 2021-09-24. A new version is available with important improvements including bug and security fixes, updated license, copyright and package detection, and improved scanning accuracy. Please download and install the latest version of ScanCode. Visit https://github.com/aboutcode-org/scancode-toolkit/releases for details.", "files_count": 10 } } @@ -191,8 +191,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 5, @@ -285,8 +285,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 1, @@ -323,8 +323,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 6, @@ -418,8 +418,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 10, @@ -490,8 +490,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 95, diff --git a/plugins/scanners/scancode/src/test/assets/scancode-output-format-2.0.0_mime-types-2.1.18.json b/plugins/scanners/scancode/src/test/assets/scancode-output-format-2.0.0_mime-types-2.1.18.json index f9c4184cbc1d5..21f7ae2f9c573 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-output-format-2.0.0_mime-types-2.1.18.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-output-format-2.0.0_mime-types-2.1.18.json @@ -15,7 +15,7 @@ "--strip-root": true, "--timeout": "0.09" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2023-12-01T135217.841476", "end_timestamp": "2023-12-01T135219.797072", "output_format_version": "2.0.0", @@ -198,8 +198,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 5, @@ -292,8 +292,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 1, @@ -330,8 +330,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 6, @@ -425,8 +425,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 10, @@ -497,8 +497,8 @@ "homepage_url": "http://opensource.org/licenses/mit-license.php", "text_url": "http://opensource.org/licenses/mit-license.php", "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", "spdx_license_key": "MIT", "spdx_url": "https://spdx.org/licenses/MIT", "start_line": 95, diff --git a/plugins/scanners/scancode/src/test/assets/scancode-output-format-3.0.0_mime-types-2.1.18.json b/plugins/scanners/scancode/src/test/assets/scancode-output-format-3.0.0_mime-types-2.1.18.json index a7435614a64ce..f098065fc24cc 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-output-format-3.0.0_mime-types-2.1.18.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-output-format-3.0.0_mime-types-2.1.18.json @@ -16,7 +16,7 @@ "--strip-root": true, "--timeout": "0.05" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2023-12-01T132258.836311", "end_timestamp": "2023-12-01T132301.066356", "output_format_version": "3.0.0", @@ -102,7 +102,7 @@ "ignorable_urls": [], "ignorable_emails": [], "text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", - "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "scancode_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", "licensedb_url": "https://scancode-licensedb.aboutcode.org/mit", "spdx_url": "https://spdx.org/licenses/MIT" } @@ -112,7 +112,7 @@ "license_expression": "mit", "identifier": "mit.LICENSE", "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", "is_license_text": true, "is_license_notice": false, "is_license_reference": false, @@ -138,7 +138,7 @@ "license_expression": "mit", "identifier": "mit_126.RULE", "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_126.RULE", + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_126.RULE", "is_license_text": false, "is_license_notice": true, "is_license_reference": false, @@ -164,7 +164,7 @@ "license_expression": "mit", "identifier": "mit_27.RULE", "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE", + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE", "is_license_text": false, "is_license_notice": false, "is_license_reference": true, @@ -190,7 +190,7 @@ "license_expression": "mit", "identifier": "mit_30.RULE", "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE", + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE", "is_license_text": false, "is_license_notice": false, "is_license_reference": false, @@ -216,7 +216,7 @@ "license_expression": "mit", "identifier": "mit_31.RULE", "language": "en", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_31.RULE", + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_31.RULE", "is_license_text": false, "is_license_notice": false, "is_license_reference": false, @@ -410,7 +410,7 @@ "license_expression": "mit", "rule_identifier": "mit_126.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_126.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_126.RULE" } ], "identifier": "mit-4e7803e6-e54b-c9ca-bcd2-bee9755c0dd7" @@ -484,7 +484,7 @@ "license_expression": "mit", "rule_identifier": "mit_27.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE" } ], "identifier": "mit-3ab5a1cd-6f73-3105-a815-d0d7c55b1922" @@ -502,7 +502,7 @@ "license_expression": "mit", "rule_identifier": "mit.LICENSE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" } ], "identifier": "mit-cacd5c0c-204a-85c2-affc-e4c125b2492a" @@ -576,7 +576,7 @@ "license_expression": "mit", "rule_identifier": "mit_30.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_30.RULE" } ], "identifier": "mit-3fce6ea2-8abd-6c6b-3ede-a37af7c6efee" @@ -628,7 +628,7 @@ "license_expression": "mit", "rule_identifier": "mit_31.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_31.RULE" + "rule_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_31.RULE" } ], "identifier": "mit-bdcba66f-6e80-f7bd-7994-748183fe5693" diff --git a/plugins/scanners/scancode/src/test/assets/scancode-with-issues.json b/plugins/scanners/scancode/src/test/assets/scancode-with-issues.json index 28b923b8deb24..c268afad0cd73 100644 --- a/plugins/scanners/scancode/src/test/assets/scancode-with-issues.json +++ b/plugins/scanners/scancode/src/test/assets/scancode-with-issues.json @@ -16,7 +16,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2022-02-02T140537.140333", "end_timestamp": "2022-02-02T140606.514357", "output_format_version": "1.0.0", @@ -27,7 +27,7 @@ ], "extra_data": { "spdx_license_list_version": "3.14", - "OUTDATED": "WARNING: Outdated ScanCode Toolkit version! You are using an outdated version of ScanCode Toolkit: 30.1.0 released on: 2021-09-24. A new version is available with important improvements including bug and security fixes, updated license, copyright and package detection, and improved scanning accuracy. Please download and install the latest version of ScanCode. Visit https://github.com/nexB/scancode-toolkit/releases for details.", + "OUTDATED": "WARNING: Outdated ScanCode Toolkit version! You are using an outdated version of ScanCode Toolkit: 30.1.0 released on: 2021-09-24. A new version is available with important improvements including bug and security fixes, updated license, copyright and package detection, and improved scanning accuracy. Please download and install the latest version of ScanCode. Visit https://github.com/aboutcode-org/scancode-toolkit/releases for details.", "files_count": 105 } } @@ -97,8 +97,8 @@ "homepage_url": "http://www.apache.org/licenses/", "text_url": "http://www.apache.org/licenses/LICENSE-2.0", "reference_url": "https://scancode-licensedb.aboutcode.org/apache-2.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml", "spdx_license_key": "Apache-2.0", "spdx_url": "https://spdx.org/licenses/Apache-2.0", "start_line": 3, @@ -171,8 +171,8 @@ "homepage_url": "http://www.apache.org/licenses/", "text_url": "http://www.apache.org/licenses/LICENSE-2.0", "reference_url": "https://scancode-licensedb.aboutcode.org/apache-2.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml", + "scancode_text_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", + "scancode_data_url": "https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml", "spdx_license_key": "Apache-2.0", "spdx_url": "https://spdx.org/licenses/Apache-2.0", "start_line": 2, diff --git a/scanner/src/test/assets/__files/clearly-defined/scancode-3.2.2.json b/scanner/src/test/assets/__files/clearly-defined/scancode-3.2.2.json index ee021a0e55e42..212bc0adb2ddf 100644 --- a/scanner/src/test/assets/__files/clearly-defined/scancode-3.2.2.json +++ b/scanner/src/test/assets/__files/clearly-defined/scancode-3.2.2.json @@ -45,7 +45,7 @@ "--timeout": "1000.0", "--url": true }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2020-09-17T102835.081456", "end_timestamp": "2020-09-17T103608.715832", "message": null, diff --git a/scanner/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json b/scanner/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json index 3050130a5ccb0..1ae7487536d11 100644 --- a/scanner/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json +++ b/scanner/src/test/assets/scancode-3.0.2_mime-types-2.1.18.json @@ -17,7 +17,7 @@ "--strip-root": true, "--timeout": "300.0" }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/aboutcode-org/scancode-toolkit/ for support and download.", "start_timestamp": "2019-08-13T074443.361209", "end_timestamp": "2019-08-13T074524.131834", "message": null, diff --git a/utils/spdx/src/main/kotlin/Utils.kt b/utils/spdx/src/main/kotlin/Utils.kt index 2de4da8e3d5eb..282c1f78a2e8f 100644 --- a/utils/spdx/src/main/kotlin/Utils.kt +++ b/utils/spdx/src/main/kotlin/Utils.kt @@ -148,7 +148,7 @@ private fun getLicenseTextFile(id: String, dir: File): File? = idWithoutLicenseRefNamespace, "$idWithoutLicenseRefNamespace.LICENSE", "x11-xconsortium_veillard.LICENSE".takeIf { - // Work around for https://github.com/nexB/scancode-toolkit/issues/2813. + // Work around for https://github.com/aboutcode-org/scancode-toolkit/issues/2813. id == "LicenseRef-scancode-x11-xconsortium-veillard" } ).firstNotNullOfOrNull { filename -> diff --git a/website/docs/configuration/license-texts.md b/website/docs/configuration/license-texts.md index 70471d51c3b2d..1a6d10eb1fd13 100644 --- a/website/docs/configuration/license-texts.md +++ b/website/docs/configuration/license-texts.md @@ -1,6 +1,6 @@ # License Texts -ORT does provide the license texts for all [SPDX licenses](https://spdx.org/licenses/) and for all license references from [ScanCode](https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses). +ORT does provide the license texts for all [SPDX licenses](https://spdx.org/licenses/) and for all license references from [ScanCode](https://github.com/aboutcode-org/scancode-toolkit/tree/develop/src/licensedcode/data/licenses). These license texts will be used when generating open source notices using the [PlainTextTemplateReporter](reporter-templates.md#plain-text-templates). If you need a license text not provided by ORT, you can put it in the custom license texts directory. diff --git a/website/docs/getting-started/tutorial.md b/website/docs/getting-started/tutorial.md index 5746053d2095a..9b6ba7bdff044 100644 --- a/website/docs/getting-started/tutorial.md +++ b/website/docs/getting-started/tutorial.md @@ -256,8 +256,8 @@ ORT is designed to integrate lots of different scanners and is not limited to li The actual scanner does not have to run on the same computer. For example, the [FossID](https://github.com/oss-review-toolkit/ort/blob/main/plugins/scanners/fossid/src/main/kotlin/FossId.kt) uses a remote service to execute the scan. -For this tutorial [ScanCode](https://github.com/nexB/scancode-toolkit) is used as a scanner. -Please install it according to [these instructions](https://github.com/nexB/scancode-toolkit/#installation) first. +For this tutorial [ScanCode](https://github.com/aboutcode-org/scancode-toolkit) is used as a scanner. +Please install it according to [these instructions](https://github.com/aboutcode-org/scancode-toolkit/#installation) first. As for the *analyzer* you can get the command line options for the `scanner` using the `--help` option: diff --git a/website/docs/tools/advisor.md b/website/docs/tools/advisor.md index af2006ed74906..fc6cc9d9f2220 100644 --- a/website/docs/tools/advisor.md +++ b/website/docs/tools/advisor.md @@ -39,7 +39,7 @@ To enable this provider, pass `-a OssIndex` on the command line. ## VulnerableCode -This provider obtains information about security vulnerabilities from a [VulnerableCode](https://github.com/nexB/vulnerablecode) instance. +This provider obtains information about security vulnerabilities from a [VulnerableCode](https://github.com/aboutcode-org/vulnerablecode) instance. The configuration is limited to the server URL, as authentication is not required: ```yaml diff --git a/website/docs/tools/scanner.md b/website/docs/tools/scanner.md index e364c484a30ad..3e73a1764835d 100644 --- a/website/docs/tools/scanner.md +++ b/website/docs/tools/scanner.md @@ -10,7 +10,7 @@ If passed an ORT result file with an analyzer result (`-i`), the *scanner* will We recommend using ORT with any of the following scanners as their integrations have been thoroughly tested (in alphabetical order): * [FossID](https://fossid.com/) (snippet scanner, commercial) -* [ScanCode](https://github.com/nexB/scancode-toolkit) +* [ScanCode](https://github.com/aboutcode-org/scancode-toolkit) Additionally, the following reference implementations exist (in alphabetical order):