diff --git a/lib/utils.js b/lib/utils.js
index 1a6ba5c72..30f9cd3c2 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -9,6 +9,7 @@ const { DateTime } = require('luxon')
const { set, unset, union, sortBy, trim, uniqBy } = require('lodash')
const extend = require('extend')
const SPDX = require('@clearlydefined/spdx')
+const scancodeMap = require('./scancodeMap')
const coordinatesMapper = require('./coordinatesMapper')()
async function toResultCoordinatesFromRequest(request) {
@@ -330,16 +331,17 @@ function updateSourceLocation(spec) {
* Checks deeper than the root depending on coordinate type
*
* @param {string} filePath
- * @param {EntityCoordinates} coordinates - optional to look deeper than the root based on coordinate type
+ * @param {EntityCoordinates} [coordinates] - optional to look deeper than the root based on coordinate type
+ * @param {object} [packages] - optional, to look at package directories
* @returns {boolean}
*/
-function isLicenseFile(filePath, coordinates) {
+function isLicenseFile(filePath, coordinates, packages) {
if (!filePath) return false
filePath = filePath.toLowerCase()
const basePath = filePath.split('/')[0]
if (_licenseFileNames.includes(basePath)) return true
if (!coordinates) return false
- for (const prefix of getLicenseLocations(coordinates) || []) {
+ for (const prefix of getLicenseLocations(coordinates, packages) || []) {
const prefixLowered = prefix.toLowerCase()
if (_licenseFileNames.includes(filePath.replace(prefixLowered, ''))) return true
}
@@ -357,18 +359,19 @@ function isDeclaredLicense(identifier) {
return identifier && identifier !== 'NOASSERTION' && identifier !== 'NONE'
}
-function getLicenseLocations(coordinates) {
+function getLicenseLocations(coordinates, packages) {
const map = {
npm: ['package/'],
maven: ['META-INF/'],
pypi: [`${coordinates.name}-${coordinates.revision}/`],
- go: [goLicenseLocations(coordinates)]
+ go: [goLicenseLocation(coordinates)],
+ debsrc: packages ? debsrcLicenseLocations(packages) : []
}
map.sourcearchive = map.maven
return map[coordinates.type]
}
-function goLicenseLocations(coordinates) {
+function goLicenseLocation(coordinates) {
if (coordinates.namespace && coordinates.namespace.toLowerCase().includes('%2f')) {
return `${deCodeSlashes(coordinates.namespace)}/${coordinates.name}@${coordinates.revision}/`
} else {
@@ -376,6 +379,61 @@ function goLicenseLocations(coordinates) {
}
}
+function debsrcLicenseLocations(packages) {
+ const licenseLocations = []
+
+ // Split packages of `type: deb` and other packages
+ const [debPackages, otherPackages] = packages.reduce(
+ ([debPackages, otherPackages], pkg) => {
+ if (pkg.type === 'deb') {
+ debPackages.push(pkg)
+ } else {
+ otherPackages.push(pkg)
+ }
+ return [debPackages, otherPackages]
+ },
+ [[], []]
+ )
+
+ // Add default location for debian packages
+ if (debPackages.length) {
+ licenseLocations.push('debian/')
+ }
+
+ // Add license locations based on package name and version for other packages
+ return licenseLocations.concat(
+ otherPackages.map(otherPackage =>
+ otherPackage.version ? `${otherPackage.name}-${otherPackage.version}/` : `${otherPackage.name}/`
+ )
+ )
+}
+
+function joinExpressions(expressions) {
+ if (!expressions) return null
+ const list = setToArray(expressions)
+ if (!list) return null
+ const joinedExpressionString = `(${list.join(') AND (')})`
+ return SPDX.normalize(joinedExpressionString)
+}
+
+function normalizeLicenseExpression(licenseExpression, logger) {
+ if (!licenseExpression) return null
+
+ const licenseVisitor = rawLicenseExpression => {
+ const mappedLicenseExpression = scancodeMap.get(rawLicenseExpression)
+ const licenseExpression = mappedLicenseExpression ? mappedLicenseExpression : rawLicenseExpression
+
+ return SPDX.normalizeSingle(licenseExpression)
+ }
+
+ const parsed = SPDX.parse(licenseExpression, licenseVisitor)
+ const result = SPDX.stringify(parsed)
+
+ if (result === 'NOASSERTION') logger.info(`ScanCode NOASSERTION from ${licenseExpression}`)
+
+ return result
+}
+
function _normalizeVersion(version) {
if (version == '1') return '1.0.0' // version '1' is not semver valid see https://github.com/clearlydefined/crawler/issues/124
return semver.valid(version) ? version : null
@@ -552,6 +610,8 @@ module.exports = {
addArrayToSet,
extractLicenseFromLicenseUrl,
getLicenseLocations,
+ joinExpressions,
+ normalizeLicenseExpression,
mergeDefinitions,
buildSourceUrl,
deCodeSlashes,
diff --git a/package-lock.json b/package-lock.json
index b824ab15c..8b40fcaec 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -52,7 +52,7 @@
"redis": "^3.1.1",
"request-id": "^0.11.1",
"request-promise-native": "^1.0.5",
- "semver": "^5.4.1",
+ "semver": "7.6.0",
"serialize-error": "^2.1.0",
"spdx-expression-parse": "github:clearlydefined/spdx-expression-parse.js#fork",
"spdx-license-list": "^6.6.0",
@@ -1332,6 +1332,15 @@
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
+ "node_modules/@babel/core/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/@babel/generator": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
@@ -2239,15 +2248,6 @@
"type-detect": "4.0.8"
}
},
- "node_modules/@sinonjs/commons/node_modules/type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@sinonjs/formatio": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-2.0.0.tgz",
@@ -2722,9 +2722,9 @@
}
},
"node_modules/assertion-error": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz",
- "integrity": "sha1-E8pRXYYgbaC6xm6DTdOX2HWBCUw=",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
+ "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
"dev": true,
"engines": {
"node": "*"
@@ -2758,6 +2758,14 @@
"node": "<=0.11.8 || >0.11.10"
}
},
+ "node_modules/async-listener/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/async-mutex": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.2.tgz",
@@ -3283,17 +3291,18 @@
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"node_modules/chai": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz",
- "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=",
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz",
+ "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==",
"dev": true,
"dependencies": {
- "assertion-error": "^1.0.1",
- "check-error": "^1.0.1",
- "deep-eql": "^3.0.0",
- "get-func-name": "^2.0.0",
- "pathval": "^1.0.0",
- "type-detect": "^4.0.0"
+ "assertion-error": "^1.1.0",
+ "check-error": "^1.0.3",
+ "deep-eql": "^4.1.3",
+ "get-func-name": "^2.0.2",
+ "loupe": "^2.3.6",
+ "pathval": "^1.1.1",
+ "type-detect": "^4.0.8"
},
"engines": {
"node": ">=4"
@@ -3338,10 +3347,13 @@
}
},
"node_modules/check-error": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz",
- "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz",
+ "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==",
"dev": true,
+ "dependencies": {
+ "get-func-name": "^2.0.2"
+ },
"engines": {
"node": "*"
}
@@ -3496,6 +3508,14 @@
"node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1"
}
},
+ "node_modules/cls-hooked/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/color-convert": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
@@ -3803,15 +3823,15 @@
}
},
"node_modules/deep-eql": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz",
- "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==",
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz",
+ "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==",
"dev": true,
"dependencies": {
"type-detect": "^4.0.0"
},
"engines": {
- "node": ">=0.12"
+ "node": ">=6"
}
},
"node_modules/deep-equal-in-any-order": {
@@ -3938,6 +3958,14 @@
"diagnostic-channel": "*"
}
},
+ "node_modules/diagnostic-channel/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/diff": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
@@ -5146,9 +5174,9 @@
}
},
"node_modules/get-func-name": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz",
- "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz",
+ "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==",
"dev": true,
"engines": {
"node": "*"
@@ -6376,6 +6404,14 @@
"xtend": "~4.0.0"
}
},
+ "node_modules/levelup/node_modules/semver": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz",
+ "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/levn": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
@@ -6490,6 +6526,15 @@
"integrity": "sha512-l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q==",
"dev": true
},
+ "node_modules/loupe": {
+ "version": "2.3.7",
+ "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz",
+ "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==",
+ "dev": true,
+ "dependencies": {
+ "get-func-name": "^2.0.1"
+ }
+ },
"node_modules/lower-case": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz",
@@ -6508,7 +6553,6 @@
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
"dependencies": {
"yallist": "^4.0.0"
},
@@ -7235,21 +7279,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/mongodb-memory-server-core/node_modules/semver": {
- "version": "7.3.8",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
- "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/mongodb-memory-server-core/node_modules/tmp": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
@@ -8637,6 +8666,14 @@
"node": ">=0.10.0"
}
},
+ "node_modules/require_optional/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
"node_modules/require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
@@ -8771,11 +8808,17 @@
"integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE="
},
"node_modules/semver": {
- "version": "5.4.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz",
- "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==",
+ "version": "7.6.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
"bin": {
- "semver": "bin/semver"
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
"node_modules/semver-diff": {
@@ -9019,15 +9062,6 @@
"node": ">=4"
}
},
- "node_modules/sinon/node_modules/type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/slash": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
@@ -9725,9 +9759,9 @@
}
},
"node_modules/type-detect": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.5.tgz",
- "integrity": "sha512-N9IvkQslUGYGC24RkJk1ba99foK6TkwC2FHAEBlQFBP0RxQZS8ZpJuAZcwiY/w9ZJHFQb1aOXBI60OdxhTrwEQ==",
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
"dev": true,
"engines": {
"node": ">=4"
@@ -10308,8 +10342,7 @@
"node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
"node_modules/yaml": {
"version": "1.10.2",
diff --git a/package.json b/package.json
index dd4c49343..7eb6f1495 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,7 @@
"redis": "^3.1.1",
"request-id": "^0.11.1",
"request-promise-native": "^1.0.5",
- "semver": "^5.4.1",
+ "semver": "7.6.0",
"serialize-error": "^2.1.0",
"spdx-expression-parse": "github:clearlydefined/spdx-expression-parse.js#fork",
"spdx-license-list": "^6.6.0",
diff --git a/providers/summary/scancode.js b/providers/summary/scancode.js
index 6eedda811..3fc2ff224 100644
--- a/providers/summary/scancode.js
+++ b/providers/summary/scancode.js
@@ -1,24 +1,16 @@
// Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
// SPDX-License-Identifier: MIT
-const { get, flatten, uniq } = require('lodash')
-const SPDX = require('@clearlydefined/spdx')
-const {
- extractDate,
- isDeclaredLicense,
- getLicenseLocations,
- isLicenseFile,
- setIfValue,
- addArrayToSet,
- setToArray
-} = require('../../lib/utils')
-const logger = require('../logging/logger')
-const scancodeMap = require('../../lib/scancodeMap')
-
-class ScanCodeSummarizer {
- constructor(options) {
+const { get } = require('lodash')
+const { gte } = require('semver')
+const Logger = require('../logging/logger')
+const ScanCodeLegacySummarizer = require('./scancode/legacy-summarizer')
+const ScanCodeNewSummarizer = require('./scancode/new-summarizer')
+
+class ScanCodeDelegator {
+ constructor(options, logger = Logger()) {
this.options = options
- this.logger = logger()
+ this.logger = logger
}
/**
@@ -31,200 +23,13 @@ class ScanCodeSummarizer {
const scancodeVersion =
get(harvested, 'content.headers[0].tool_version') || get(harvested, 'content.scancode_version')
if (!scancodeVersion) throw new Error('Not valid ScanCode data')
- const result = {}
- this.addDescribedInfo(result, harvested)
- let declaredLicense = this._getDeclaredLicenseFromSummary(scancodeVersion, harvested)
- if (!isDeclaredLicense(declaredLicense)) {
- declaredLicense = this._getDeclaredLicenseFromFiles(scancodeVersion, harvested, coordinates) || declaredLicense
- }
- setIfValue(result, 'licensed.declared', declaredLicense)
- result.files = this._summarizeFileInfo(harvested.content.files, coordinates)
- return result
- }
-
- addDescribedInfo(result, harvested) {
- const releaseDate = harvested._metadata.releaseDate
- if (releaseDate) result.described = { releaseDate: extractDate(releaseDate.trim()) }
- }
-
- _getDeclaredLicenseFromSummary(scancodeVersion, harvested) {
- let declaredLicense = this._readDeclaredLicenseFromSummary(scancodeVersion, harvested)
- if (!isDeclaredLicense(declaredLicense)) {
- declaredLicense = this._readLicenseExpressionFromSummary(harvested) || declaredLicense
- }
- return declaredLicense
- }
-
- _readDeclaredLicenseFromSummary(scancodeVersion, harvested) {
- switch (scancodeVersion) {
- case '2.2.1':
- case '2.9.1':
- case '2.9.2':
- case '2.9.8':
- case '3.0.0':
- case '3.0.2':
- return SPDX.normalize(get(harvested, 'content.summary.packages[0].declared_license'))
- case '30.1.0': {
- let declared_license = get(harvested, 'content.summary.packages[0].declared_license')
- if (Array.isArray(declared_license)) declared_license = declared_license[0]
- // Some Maven packages have this value as an object rather than a string
- // Example: for maven/mavencentral/redis.clients/jedis/4.1.1
- // declared_license would be { "name": "MIT", "url": "http://github.com/redis/jedis/raw/master/LICENSE.txt", "comments": null, "distribution": "repo" }'
- // Some pypi packages have this value as an object with a license field
- // Example: for pypi/pypi/abseil/absl-py/0.9.0
- // declared_license would be { "license": "Apache 2.0", "classifiers": ["License :: OSI Approved :: Apache Software License"] }
- if (typeof declared_license != 'string' && declared_license != undefined) {
- declared_license = declared_license['name'] || declared_license['license']
- }
-
- return SPDX.normalize(declared_license)
- }
- default:
- throw new Error(`Invalid version of ScanCode: ${scancodeVersion}`)
- }
- }
-
- _readLicenseExpressionFromSummary(harvested) {
- const licenseExpression = get(harvested, 'content.summary.packages[0].license_expression')
- const result = licenseExpression && this._normalizeLicenseExpression(licenseExpression)
- return result?.includes('NOASSERTION') ? null : result
- }
-
- // find and return the files that should be considered for as a license determinator for this summarization
- _getRootFiles(coordinates, files) {
- const roots = getLicenseLocations(coordinates) || []
- roots.push('') // for no prefix
- let rootFiles = this._findRootFiles(files, roots)
- //Some components (e.g. composer/packgist) are packaged under one directory
- if (rootFiles.length === 1 && rootFiles[0].type === 'directory') {
- rootFiles = this._findRootFiles(files, [`${rootFiles[0].path}/`])
- }
- return rootFiles
- }
-
- _findRootFiles(files, roots) {
- return files.filter(file => {
- for (let root of roots)
- if (file.path.startsWith(root) && file.path.slice(root.length).indexOf('/') === -1) return true
- })
- }
- _getDeclaredLicenseFromFiles(scancodeVersion, harvested, coordinates) {
- const rootFile = this._getRootFiles(coordinates, harvested.content.files)
- switch (scancodeVersion) {
- case '2.2.1':
- return this._getLicenseByPackageAssertion(rootFile)
- case '2.9.2':
- case '2.9.8':
- return this._getLicenseByFileName(rootFile, coordinates)
- case '3.0.0':
- case '3.0.2':
- return this._getLicenseByIsLicenseText(rootFile)
- case '30.1.0':
- return this._getLicenseByIsLicenseText(rootFile)
- default:
- return null
+ if (gte(scancodeVersion, '32.1.0')) {
+ return ScanCodeNewSummarizer(this.options, this.logger).summarize(scancodeVersion, coordinates, harvested)
}
- }
-
- _getLicenseByIsLicenseText(files) {
- const fullLicenses = files
- .filter(file => file.is_license_text && file.licenses)
- .reduce((licenses, file) => {
- file.licenses.forEach(license => {
- licenses.add(this._createExpressionFromLicense(license))
- })
- return licenses
- }, new Set())
- return this._joinExpressions(fullLicenses)
- }
-
- _getLicenseByFileName(files, coordinates) {
- const fullLicenses = files
- .filter(file => isLicenseFile(file.path, coordinates) && file.licenses)
- .reduce((licenses, file) => {
- file.licenses.forEach(license => {
- if (license.score >= 90) licenses.add(this._createExpressionFromLicense(license))
- })
- return licenses
- }, new Set())
- return this._joinExpressions(fullLicenses)
- }
-
- // Create a license expression from all of the package info in the output
- _getLicenseByPackageAssertion(files) {
- for (let file of files) {
- const asserted = get(file, 'packages[0].asserted_licenses')
- // Find the first package file and treat it as the authority
- if (asserted) {
- const packageLicenses = addArrayToSet(
- asserted,
- new Set(),
- // TODO, is `license.license` real?
- license => license.license || license.spdx_license_key
- )
- return this._joinExpressions(packageLicenses)
- }
- }
- return null
- }
-
- _summarizeFileInfo(files, coordinates) {
- return files
- .map(file => {
- if (file.type !== 'file') return null
- const result = { path: file.path }
- const asserted = get(file, 'packages[0].asserted_licenses')
- const fileLicense = asserted || file.licenses || []
- let licenses = new Set(fileLicense.map(x => x.license).filter(x => x))
- if (!licenses.size)
- licenses = new Set(fileLicense.filter(x => x.score >= 80).map(x => this._createExpressionFromLicense(x)))
- const licenseExpression = this._joinExpressions(licenses)
- setIfValue(result, 'license', licenseExpression)
- if (this._getLicenseByIsLicenseText([file]) || this._getLicenseByFileName([file], coordinates)) {
- result.natures = result.natures || []
- if (!result.natures.includes('license')) result.natures.push('license')
- }
- setIfValue(
- result,
- 'attributions',
- file.copyrights ? uniq(flatten(file.copyrights.map(c => c.statements || c.value))).filter(x => x) : null
- )
- setIfValue(result, 'hashes.sha1', file.sha1)
- return result
- })
- .filter(e => e)
- }
-
- _joinExpressions(expressions) {
- if (!expressions) return null
- const list = setToArray(expressions)
- if (!list) return null
- const joinedExpressionString = `(${list.join(') AND (')})`
- return SPDX.normalize(joinedExpressionString)
- }
-
- _createExpressionFromLicense(license) {
- const rule = license.matched_rule
- if (!rule || !rule.license_expression) return SPDX.normalize(license.spdx_license_key)
- return this._normalizeLicenseExpression(rule.license_expression)
- }
-
- _normalizeLicenseExpression(licenseExpression) {
- const licenseVisitor = rawLicenseExpression => {
- const mappedLicenseExpression = scancodeMap.get(rawLicenseExpression)
- const licenseExpression = mappedLicenseExpression ? mappedLicenseExpression : rawLicenseExpression
-
- return SPDX.normalizeSingle(licenseExpression)
- }
-
- const parsed = SPDX.parse(licenseExpression, licenseVisitor)
- const result = SPDX.stringify(parsed)
-
- if (result === 'NOASSERTION') this.logger.info(`ScanCode NOASSERTION from ${licenseExpression}`)
- return result
+ return ScanCodeLegacySummarizer(this.options, this.logger).summarize(scancodeVersion, coordinates, harvested)
}
}
-module.exports = options => new ScanCodeSummarizer(options)
+module.exports = (options, logger) => new ScanCodeDelegator(options, logger)
diff --git a/providers/summary/scancode/legacy-summarizer.js b/providers/summary/scancode/legacy-summarizer.js
new file mode 100644
index 000000000..a0e74c481
--- /dev/null
+++ b/providers/summary/scancode/legacy-summarizer.js
@@ -0,0 +1,203 @@
+// Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
+// SPDX-License-Identifier: MIT
+
+const { get, flatten, uniq } = require('lodash')
+const SPDX = require('@clearlydefined/spdx')
+const {
+ extractDate,
+ isDeclaredLicense,
+ getLicenseLocations,
+ isLicenseFile,
+ setIfValue,
+ addArrayToSet,
+ joinExpressions,
+ normalizeLicenseExpression
+} = require('../../../lib/utils')
+
+class ScanCodeLegacySummarizer {
+ constructor(options, logger) {
+ this.options = options
+ this.logger = logger
+ }
+
+ /**
+ * Summarize the raw information related to the given coordinates.
+ * @param {string} scancodeVersion - The version of ScanCode used to generate the harvested data. e.g. '2.2.1' or '3.0.2'
+ * @param {EntitySpec} coordinates - The entity for which we are summarizing
+ * @param {*} harvested - the set of raw tool outputs related to the identified entity
+ * @returns {Definition} - a summary of the given raw information
+ */
+ summarize(scancodeVersion, coordinates, harvested) {
+ const result = {}
+ this.addDescribedInfo(result, harvested)
+ let declaredLicense = this._getDeclaredLicenseFromSummary(scancodeVersion, harvested)
+ if (!isDeclaredLicense(declaredLicense)) {
+ declaredLicense = this._getDeclaredLicenseFromFiles(scancodeVersion, harvested, coordinates) || declaredLicense
+ }
+ setIfValue(result, 'licensed.declared', declaredLicense)
+ result.files = this._summarizeFileInfo(harvested.content.files, coordinates)
+ return result
+ }
+
+ addDescribedInfo(result, harvested) {
+ const releaseDate = harvested._metadata.releaseDate
+ if (releaseDate) result.described = { releaseDate: extractDate(releaseDate.trim()) }
+ }
+
+ _getDeclaredLicenseFromSummary(scancodeVersion, harvested) {
+ let declaredLicense = this._readDeclaredLicenseFromSummary(scancodeVersion, harvested)
+ if (!isDeclaredLicense(declaredLicense)) {
+ declaredLicense = this._readLicenseExpressionFromSummary(harvested) || declaredLicense
+ }
+ return declaredLicense
+ }
+
+ _readDeclaredLicenseFromSummary(scancodeVersion, harvested) {
+ switch (scancodeVersion) {
+ case '2.2.1':
+ case '2.9.1':
+ case '2.9.2':
+ case '2.9.8':
+ case '3.0.0':
+ case '3.0.2':
+ return SPDX.normalize(get(harvested, 'content.summary.packages[0].declared_license'))
+ case '30.1.0': {
+ let declared_license = get(harvested, 'content.summary.packages[0].declared_license')
+ if (Array.isArray(declared_license)) declared_license = declared_license[0]
+ // Some Maven packages have this value as an object rather than a string
+ // Example: for maven/mavencentral/redis.clients/jedis/4.1.1
+ // declared_license would be { "name": "MIT", "url": "http://github.com/redis/jedis/raw/master/LICENSE.txt", "comments": null, "distribution": "repo" }'
+ // Some pypi packages have this value as an object with a license field
+ // Example: for pypi/pypi/abseil/absl-py/0.9.0
+ // declared_license would be { "license": "Apache 2.0", "classifiers": ["License :: OSI Approved :: Apache Software License"] }
+ if (typeof declared_license != 'string' && declared_license != undefined) {
+ declared_license = declared_license['name'] || declared_license['license']
+ }
+
+ return SPDX.normalize(declared_license)
+ }
+ default:
+ throw new Error(`Invalid version of ScanCode: ${scancodeVersion}`)
+ }
+ }
+
+ _readLicenseExpressionFromSummary(harvested) {
+ const licenseExpression = get(harvested, 'content.summary.packages[0].license_expression')
+ const result = licenseExpression && normalizeLicenseExpression(licenseExpression, this.logger)
+ return result?.includes('NOASSERTION') ? null : result
+ }
+
+ // find and return the files that should be considered for as a license determinator for this summarization
+ _getRootFiles(coordinates, files, packages) {
+ const roots = getLicenseLocations(coordinates, packages) || []
+ roots.push('') // for no prefix
+ let rootFiles = this._findRootFiles(files, roots)
+ //Some components (e.g. composer/packgist) are packaged under one directory
+ if (rootFiles.length === 1 && rootFiles[0].type === 'directory') {
+ rootFiles = this._findRootFiles(files, [`${rootFiles[0].path}/`])
+ }
+ return rootFiles
+ }
+
+ _findRootFiles(files, roots) {
+ return files.filter(file => {
+ for (let root of roots)
+ if (file.path.startsWith(root) && file.path.slice(root.length).indexOf('/') === -1) return true
+ })
+ }
+
+ _getDeclaredLicenseFromFiles(scancodeVersion, harvested, coordinates) {
+ const rootFile = this._getRootFiles(coordinates, harvested.content.files, harvested.content.packages)
+ switch (scancodeVersion) {
+ case '2.2.1':
+ return this._getLicenseByPackageAssertion(rootFile)
+ case '2.9.2':
+ case '2.9.8':
+ return this._getLicenseByFileName(rootFile, coordinates)
+ case '3.0.0':
+ case '3.0.2':
+ return this._getLicenseByIsLicenseText(rootFile)
+ case '30.1.0':
+ return this._getLicenseByIsLicenseText(rootFile)
+ default:
+ return null
+ }
+ }
+
+ _getLicenseByIsLicenseText(files) {
+ const fullLicenses = files
+ .filter(file => file.is_license_text && file.licenses)
+ .reduce((licenses, file) => {
+ file.licenses.forEach(license => {
+ licenses.add(this._createExpressionFromLicense(license))
+ })
+ return licenses
+ }, new Set())
+ return joinExpressions(fullLicenses)
+ }
+
+ _getLicenseByFileName(files, coordinates) {
+ const fullLicenses = files
+ .filter(file => isLicenseFile(file.path, coordinates) && file.licenses)
+ .reduce((licenses, file) => {
+ file.licenses.forEach(license => {
+ if (license.score >= 90) licenses.add(this._createExpressionFromLicense(license))
+ })
+ return licenses
+ }, new Set())
+ return joinExpressions(fullLicenses)
+ }
+
+ // Create a license expression from all of the package info in the output
+ _getLicenseByPackageAssertion(files) {
+ for (let file of files) {
+ const asserted = get(file, 'packages[0].asserted_licenses')
+ // Find the first package file and treat it as the authority
+ if (asserted) {
+ const packageLicenses = addArrayToSet(
+ asserted,
+ new Set(),
+ // TODO, is `license.license` real?
+ license => license.license || license.spdx_license_key
+ )
+ return joinExpressions(packageLicenses)
+ }
+ }
+ return null
+ }
+
+ _summarizeFileInfo(files, coordinates) {
+ return files
+ .map(file => {
+ if (file.type !== 'file') return null
+ const result = { path: file.path }
+ const asserted = get(file, 'packages[0].asserted_licenses')
+ const fileLicense = asserted || file.licenses || []
+ let licenses = new Set(fileLicense.map(x => x.license).filter(x => x))
+ if (!licenses.size)
+ licenses = new Set(fileLicense.filter(x => x.score >= 80).map(x => this._createExpressionFromLicense(x)))
+ const licenseExpression = joinExpressions(licenses)
+ setIfValue(result, 'license', licenseExpression)
+ if (this._getLicenseByIsLicenseText([file]) || this._getLicenseByFileName([file], coordinates)) {
+ result.natures = result.natures || []
+ if (!result.natures.includes('license')) result.natures.push('license')
+ }
+ setIfValue(
+ result,
+ 'attributions',
+ file.copyrights ? uniq(flatten(file.copyrights.map(c => c.statements || c.value))).filter(x => x) : null
+ )
+ setIfValue(result, 'hashes.sha1', file.sha1)
+ return result
+ })
+ .filter(e => e)
+ }
+
+ _createExpressionFromLicense(license) {
+ const rule = license.matched_rule
+ if (!rule || !rule.license_expression) return SPDX.normalize(license.spdx_license_key)
+ return normalizeLicenseExpression(rule.license_expression, this.logger)
+ }
+}
+
+module.exports = (options, logger) => new ScanCodeLegacySummarizer(options, logger)
diff --git a/providers/summary/scancode/new-summarizer.js b/providers/summary/scancode/new-summarizer.js
new file mode 100644
index 000000000..163fa7125
--- /dev/null
+++ b/providers/summary/scancode/new-summarizer.js
@@ -0,0 +1,195 @@
+// Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
+// SPDX-License-Identifier: MIT
+
+const { get, flatten, uniq } = require('lodash')
+const SPDX = require('@clearlydefined/spdx')
+const {
+ extractDate,
+ isDeclaredLicense,
+ getLicenseLocations,
+ isLicenseFile,
+ setIfValue,
+ joinExpressions,
+ normalizeLicenseExpression
+} = require('../../../lib/utils')
+
+class ScanCodeNewSummarizer {
+ constructor(options, logger) {
+ this.options = options
+ this.logger = logger
+ }
+
+ /**
+ * Summarize the raw information related to the given coordinates.
+ * @param {EntityCoordinates} coordinates - The entity for which we are summarizing
+ * @param {*} harvestedData - the set of raw tool outputs related to the identified entity
+ * @returns {Definition} - a summary of the given raw information
+ */
+ summarize(scancodeVersion, coordinates, harvestedData) {
+ if (!scancodeVersion) throw new Error('Not valid ScanCode data')
+
+ const result = {}
+ this.addDescribedInfo(result, harvestedData)
+
+ let declaredLicense = this._getDeclaredLicense(harvestedData)
+ if (!isDeclaredLicense(declaredLicense)) {
+ declaredLicense = this._getDetectedLicensesFromFiles(harvestedData, coordinates) || declaredLicense
+ }
+ setIfValue(result, 'licensed.declared', declaredLicense)
+
+ result.files = this._summarizeFileInfo(harvestedData.content.files, coordinates)
+
+ return result
+ }
+
+ addDescribedInfo(result, harvestedData) {
+ const releaseDate = harvestedData._metadata.releaseDate
+ if (releaseDate) result.described = { releaseDate: extractDate(releaseDate.trim()) }
+ }
+
+ _getDeclaredLicense(harvestedData) {
+ const licenseReaders = [
+ this._readDeclaredLicenseExpressionFromSummary.bind(this),
+ this._readDeclaredLicenseExpressionFromPackage.bind(this),
+ this._readExtractedLicenseStatementFromPackage.bind(this)
+ ]
+
+ for (const reader of licenseReaders) {
+ const declaredLicense = reader(harvestedData)
+ if (isDeclaredLicense(declaredLicense)) {
+ return declaredLicense
+ }
+ }
+
+ return null
+ }
+
+ _readDeclaredLicenseExpressionFromSummary({ content }) {
+ const licenseExpression = get(content, 'summary.declared_license_expression')
+ const result = licenseExpression && normalizeLicenseExpression(licenseExpression, this.logger)
+
+ return result?.includes('NOASSERTION') ? null : result
+ }
+
+ _readDeclaredLicenseExpressionFromPackage({ content }) {
+ const { packages } = content
+ if (!packages) return null
+ const [firstPackage] = packages
+ if (!firstPackage) return null
+
+ const licenseExpression = firstPackage.declared_license_expression_spdx
+
+ return licenseExpression?.includes('NOASSERTION') ? null : licenseExpression
+ }
+
+ _readExtractedLicenseStatementFromPackage({ content }) {
+ const declared_license = get(content, 'packages[0].extracted_license_statement')
+ return SPDX.normalize(declared_license)
+ }
+
+ // find and return the files that should be considered for as a license determinator for this summarization
+ _getRootFiles(coordinates, files, packages) {
+ const roots = getLicenseLocations(coordinates, packages) || []
+ roots.push('') // for no prefix
+ let rootFiles = this._findRootFiles(files, roots)
+ //Some components (e.g. composer/packgist) are packaged under one directory
+ if (rootFiles.length === 1 && rootFiles[0].type === 'directory') {
+ rootFiles = this._findRootFiles(files, [`${rootFiles[0].path}/`])
+ }
+ return rootFiles
+ }
+
+ _findRootFiles(files, roots) {
+ return files.filter(file => {
+ for (let root of roots) {
+ if (file.path.startsWith(root) && file.path.slice(root.length).indexOf('/') === -1) return true
+ }
+ })
+ }
+
+ _getDetectedLicensesFromFiles(harvestedData, coordinates) {
+ const rootFiles = this._getRootFiles(coordinates, harvestedData.content.files, harvestedData.content.packages)
+ return this._getFileLicensesFromDetectedLicenseExpressions(rootFiles)
+ }
+
+ _getFileLicensesFromDetectedLicenseExpressions(files) {
+ const fullLicenses = files
+ .filter(file => file.percentage_of_license_text >= 90 && file.detected_license_expression_spdx)
+ .map(file => file.detected_license_expression_spdx)
+ return joinExpressions(fullLicenses)
+ }
+
+ _getClosestLicenseMatchByFileName(files, coordinates) {
+ const fullLicenses = files
+ .filter(file => isLicenseFile(file.path, coordinates) && file.license_detections)
+ .reduce((licenses, file) => {
+ file.license_detections.forEach(licenseDetection => {
+ if (licenseDetection.license_expression_spdx) {
+ licenses.add(licenseDetection.license_expression_spdx)
+ return
+ }
+ licenseDetection.matches.forEach(match => {
+ // Only consider matches with high clarity score of 90 or higher
+ if (match.score >= 90) {
+ licenses.add(match.spdx_license_expression)
+ }
+ })
+ })
+ return licenses
+ }, new Set())
+ return joinExpressions(fullLicenses)
+ }
+
+ _getLicenseExpressionFromFileLicenseDetections(file) {
+ const licenseExpressions = file.license_detections.reduce((licenseExpressions, licenseDetection) => {
+ if (licenseDetection.license_expression_spdx) {
+ licenseExpressions.add(licenseDetection.license_expression_spdx)
+ } else {
+ licenseDetection.matches.forEach(match => {
+ // Only consider matches with a reasonably high score of 80 or higher
+ if (match.score >= 80) {
+ licenseExpressions.add(match.spdx_license_expression)
+ }
+ })
+ }
+ return licenseExpressions
+ }, new Set())
+ return joinExpressions(licenseExpressions)
+ }
+
+ _summarizeFileInfo(files, coordinates) {
+ return files
+ .map(file => {
+ if (file.type !== 'file') return null
+
+ const result = { path: file.path }
+
+ const licenseExpression =
+ file.detected_license_expression_spdx || this._getLicenseExpressionFromFileLicenseDetections(file)
+ setIfValue(result, 'license', licenseExpression)
+
+ if (
+ this._getFileLicensesFromDetectedLicenseExpressions([file]) ||
+ this._getClosestLicenseMatchByFileName([file], coordinates)
+ ) {
+ result.natures = result.natures || []
+ if (!result.natures.includes('license')) result.natures.push('license')
+ }
+
+ setIfValue(
+ result,
+ 'attributions',
+ file.copyrights
+ ? uniq(flatten(file.copyrights.map(c => c.copyright || c.statements || c.value))).filter(x => x)
+ : null
+ )
+ setIfValue(result, 'hashes.sha1', file.sha1)
+ setIfValue(result, 'hashes.sha256', file.sha256)
+
+ return result
+ })
+ .filter(e => e)
+ }
+}
+
+module.exports = (options, logger) => new ScanCodeNewSummarizer(options, logger)
diff --git a/test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json b/test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json
index f09fa783e..1160f857b 100644
--- a/test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json
+++ b/test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json
@@ -4,7 +4,7 @@
"_metadata": {
"type": "clearlydefined",
"url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1",
- "fetchedAt": "2022-04-08T16:34:36.129Z",
+ "fetchedAt": "2024-05-13T14:15:20.649Z",
"links": {
"self": {
"href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:clearlydefined:1.3.0",
@@ -1285,7 +1285,7 @@
"_metadata": {
"type": "licensee",
"url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1",
- "fetchedAt": "2022-04-08T16:34:36.129Z",
+ "fetchedAt": "2024-05-13T14:15:20.649Z",
"links": {
"self": {
"href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:licensee:9.14.0",
@@ -1298,7 +1298,7 @@
},
"schemaVersion": "9.14.0",
"toolVersion": "9.12.0",
- "processedAt": "2022-04-08T16:34:36.694Z"
+ "processedAt": "2024-05-13T14:15:21.917Z"
},
"licensee": {
"version": "9.12.0",
@@ -1425,15 +1425,2555 @@
]
}
},
+ "reuse": {
+ "3.2.1": {
+ "_metadata": {
+ "type": "reuse",
+ "url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1",
+ "fetchedAt": "2024-05-13T15:17:48.328Z",
+ "links": {
+ "self": {
+ "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:reuse:3.2.1",
+ "type": "resource"
+ },
+ "siblings": {
+ "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:reuse",
+ "type": "collection"
+ }
+ },
+ "schemaVersion": "3.2.1",
+ "toolVersion": "3.0.1",
+ "processedAt": "2024-05-13T15:17:48.766Z"
+ },
+ "reuse": {
+ "metadata": {
+ "SPDXVersion": "SPDX-2.1",
+ "DataLicense": "CC0-1.0",
+ "SPDXID": "SPDXRef-DOCUMENT",
+ "DocumentName": "cd-TcR0Gx",
+ "DocumentNamespace": "http://spdx.org/spdxdocs/spdx-v2.1-5d309aa2-ac0f-4335-b683-6a47f7b712a6",
+ "CreatorPerson": "Anonymous ()",
+ "CreatorOrganization": "Anonymous ()",
+ "CreatorTool": "reuse-3.0.1",
+ "Created": "2024-05-13T15:17:48+00:00Z",
+ "CreatorComment": "This document was created automatically using available reuse information consistent with REUSE."
+ },
+ "files": [
+ {
+ "FileName": "META-INF/MANIFEST.MF",
+ "SPDXID": "SPDXRef-de6b109719aa5a22bd7c440c6b612fa6",
+ "FileChecksumSHA1": "d1efee3a8c440a568c4860ffa6cf4c463ff41b76",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "META-INF/NOTICE.txt",
+ "SPDXID": "SPDXRef-1f4b75d17e279471b8d968acfda373af",
+ "FileChecksumSHA1": "7a2fa8cdb386ec3ab29c165f9cd21e22177011de",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "Copyright 2005-2010 The Apache Software Foundation"
+ },
+ {
+ "FileName": "org/apache/http/ConnectionClosedException.java",
+ "SPDXID": "SPDXRef-9bae0ce60614db259ac49e52f3da02c0",
+ "FileChecksumSHA1": "09d2023caa789224e6a0f9eb5aca902055fb5888",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-0c192c1a0f469016d9ee405b3210b1d5",
+ "FileChecksumSHA1": "c29a8161e5d618f91b0b1506468a5bf3d9059374",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/FormattedHeader.java",
+ "SPDXID": "SPDXRef-1b9375aa0cbcaddd75e4fc67d8133dff",
+ "FileChecksumSHA1": "cfa74bb83c4a74c118fa4f892cd0dfb93468264a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/Header.java",
+ "SPDXID": "SPDXRef-5d12ae6c94b1a234f241f4d6e125175a",
+ "FileChecksumSHA1": "56c8765d09f121242787eff1dcf8e2df6493121f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderElement.java",
+ "SPDXID": "SPDXRef-99640c13027b73bc1085988ba940ebda",
+ "FileChecksumSHA1": "5bf3e02851084299a5bdb0e18f95cdb6cc0849a2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderElementIterator.java",
+ "SPDXID": "SPDXRef-b0b3f3e45c5618164de5a0898be307cf",
+ "FileChecksumSHA1": "18bc5ab1639c36c06b55d5a6cce6e70c68a0dbd6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderIterator.java",
+ "SPDXID": "SPDXRef-4fcc6c330d727c7be3c50e02f183ca35",
+ "FileChecksumSHA1": "f0b4b86111a065f1d615f20eebc3eaec9cafb581",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpClientConnection.java",
+ "SPDXID": "SPDXRef-e52e41de4b0228009716d780ccdbd41f",
+ "FileChecksumSHA1": "63c61b28b460e1a35eee1ecc536112c65dab1290",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpConnection.java",
+ "SPDXID": "SPDXRef-0056ffe2681be5099efdd4d80644cde6",
+ "FileChecksumSHA1": "9748bf675ec200953817f916f95a5e22fe3387a3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpConnectionMetrics.java",
+ "SPDXID": "SPDXRef-c7b8b6fbc1bcba804a5f2a021a07a717",
+ "FileChecksumSHA1": "6b3d3a427d0cce3386aa855b4e9cf5b33ab57a3e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpEntity.java",
+ "SPDXID": "SPDXRef-ec3ae396bc556f100fdb23ce5a7a7672",
+ "FileChecksumSHA1": "0925b67f19bf70db3ff07e1653656c709b8bb405",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpEntityEnclosingRequest.java",
+ "SPDXID": "SPDXRef-4729363229ca89d6afa66bfa6d94dd00",
+ "FileChecksumSHA1": "890b3c0d39ec5283894e84ae694380b6938bac64",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpException.java",
+ "SPDXID": "SPDXRef-a4de0876627ec75ecdd989673297ff2a",
+ "FileChecksumSHA1": "ec0511e1b1d58b9e61c29b4e8306be5b223c4b6c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpHeaders.java",
+ "SPDXID": "SPDXRef-e3073c697b5ddff69e7ea52b8c690cec",
+ "FileChecksumSHA1": "186aa17acc44cdffb90f518c5c878aa0a1bff0fb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpHost.java",
+ "SPDXID": "SPDXRef-bed19bccfcd980bf45cc437c7766986d",
+ "FileChecksumSHA1": "e76f64ae716af51fd1a4c4e3ea4954f86ef45bcf",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpInetConnection.java",
+ "SPDXID": "SPDXRef-0eabfd00066468146b755f13d1928d30",
+ "FileChecksumSHA1": "1b96c2122d5767c6d4d6cb36306c49b300ec819d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpMessage.java",
+ "SPDXID": "SPDXRef-550ee718382fdbb302eaf2d5bb6dae96",
+ "FileChecksumSHA1": "cd15c87564a9b2bc73ac874d6f476a35beb6efb8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequest.java",
+ "SPDXID": "SPDXRef-40177034104413e5bf012636b4b965f7",
+ "FileChecksumSHA1": "451d11743a5e75a64a378039344783d4e80a76ef",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequestFactory.java",
+ "SPDXID": "SPDXRef-53d60adbd31e32aec69a8fba2d1c02ca",
+ "FileChecksumSHA1": "3f86d512781bae2ea157ee456d38ca77b3d77d88",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequestInterceptor.java",
+ "SPDXID": "SPDXRef-a8bb3b2efc94acd00238433ed60a6600",
+ "FileChecksumSHA1": "86457e6bccedca3a5260e4ce4d3930a005952ba2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponse.java",
+ "SPDXID": "SPDXRef-00c3a1fa4f159f9667f16212e5db2297",
+ "FileChecksumSHA1": "fe4530eb9215e6afeafac9c192ac3c29961acb1d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponseFactory.java",
+ "SPDXID": "SPDXRef-760775d5df03fd481bc2cbb526ea291e",
+ "FileChecksumSHA1": "2a02ed003c2ee607dfbe5a01294dbc53823d7d5e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponseInterceptor.java",
+ "SPDXID": "SPDXRef-479db00003a2433ee3bf71d664c3dccc",
+ "FileChecksumSHA1": "75df9e63113bddd95ea52f9d3c94a8896697b979",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpServerConnection.java",
+ "SPDXID": "SPDXRef-655784e08665fe723245f7cc76bdef88",
+ "FileChecksumSHA1": "8495796dee60aef41a58627dd65999ab6a8e0289",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpStatus.java",
+ "SPDXID": "SPDXRef-4a191965fe299584ff3e80a390b713a9",
+ "FileChecksumSHA1": "265cf51183216b610b661e9dd68603cd7860846f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpVersion.java",
+ "SPDXID": "SPDXRef-57e4f3c2e6427740549a2ac98bef3e37",
+ "FileChecksumSHA1": "aa0d140a334b5d7f5291e4adc86efd2ce63408d0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/MalformedChunkCodingException.java",
+ "SPDXID": "SPDXRef-c809b0e5545e6cf4375f81822b194e8c",
+ "FileChecksumSHA1": "8599f21cd854fffa1a6759f66e0fa116fea958a7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/MethodNotSupportedException.java",
+ "SPDXID": "SPDXRef-bb533aec0d4fd33f2294337e83eb1c45",
+ "FileChecksumSHA1": "0f36b2d46981f6d9125bef485ca868646ff2cbea",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/NameValuePair.java",
+ "SPDXID": "SPDXRef-918ffef1ed12b27ff7560ca1e68e1489",
+ "FileChecksumSHA1": "82c2009c5bfb0cec1431e44e615f841bd18cd07e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/NoHttpResponseException.java",
+ "SPDXID": "SPDXRef-383e4243a94b1446851b50a6409004f0",
+ "FileChecksumSHA1": "71292280cb85fbb291626b02e3bd5291b5eb6d45",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ParseException.java",
+ "SPDXID": "SPDXRef-0c9f2220f92707f53952990303116525",
+ "FileChecksumSHA1": "7af794c44df567bb83e64c13d537c97077962ed3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ProtocolException.java",
+ "SPDXID": "SPDXRef-29b1f6aa685fa283ccf93b6657cf7391",
+ "FileChecksumSHA1": "f81e9b126889e99227e1c91327c23dbaa8693c42",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ProtocolVersion.java",
+ "SPDXID": "SPDXRef-38fb2a0669c3fc7be5897afdf1ff85e3",
+ "FileChecksumSHA1": "f0d6e0dc2c49eb902354ebc07a94a315866fecac",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ReasonPhraseCatalog.java",
+ "SPDXID": "SPDXRef-0ca22000d56e9c1650fc63c5874cbf13",
+ "FileChecksumSHA1": "b931f4350037937832a7bd03b9765b600583d263",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/RequestLine.java",
+ "SPDXID": "SPDXRef-3110fe6ae178e350c9633fddbdc11920",
+ "FileChecksumSHA1": "b39362f01a7dc2246c3ac86a0d9b8f8dd1118d0b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/StatusLine.java",
+ "SPDXID": "SPDXRef-75340346afd56fdec614ebcd908f9a67",
+ "FileChecksumSHA1": "582eb19dece77407f39a0efc8cde483fcb12ee4e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/TokenIterator.java",
+ "SPDXID": "SPDXRef-e778e8004c1f25bd048d18e75bf2281e",
+ "FileChecksumSHA1": "f3b13f34a13778b0a11bb4e35620ab952e8eccfe",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/TruncatedChunkException.java",
+ "SPDXID": "SPDXRef-b5f422117bd1b18a4fba5e9609f9ac1f",
+ "FileChecksumSHA1": "b891629e7af31971f2dd97ef03c127e2cce37a67",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/UnsupportedHttpVersionException.java",
+ "SPDXID": "SPDXRef-65a1deaf3ca723653357eae718e438e5",
+ "FileChecksumSHA1": "3241e436404a7fcf713c4dc4edeed4732b7d46a0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/AbstractHttpEntity.java",
+ "SPDXID": "SPDXRef-640f1de3d69d88e548f3e274cbcbc897",
+ "FileChecksumSHA1": "c856d7f8e0c40b3363d5932c37ef4c25364eb9e1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/BasicHttpEntity.java",
+ "SPDXID": "SPDXRef-7e659a20cb49ee83ae556875446633e1",
+ "FileChecksumSHA1": "dddf065f662285729466b433a6d606f39985a4dc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/BufferedHttpEntity.java",
+ "SPDXID": "SPDXRef-801d66b9a897348109cdd253142ed742",
+ "FileChecksumSHA1": "f769eb9ff59cd0a50295e2c1426c97c40780a703",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ByteArrayEntity.java",
+ "SPDXID": "SPDXRef-6bf9c0611cf8a6b58db636cf593de38f",
+ "FileChecksumSHA1": "8eef873c4e188be7b4096e70f9942d9eb1874a9e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-92b653801fd6e0da487b6643841479e1",
+ "FileChecksumSHA1": "49020f1bf8af79239880a4f8b41502633d992f16",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ContentProducer.java",
+ "SPDXID": "SPDXRef-6bc95d3422eead43b3c71df9db82113c",
+ "FileChecksumSHA1": "221ae577191d451997785b76dc82e331fd0243b0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/EntityTemplate.java",
+ "SPDXID": "SPDXRef-3ebb7bbfca17278556ff75d03e5776f1",
+ "FileChecksumSHA1": "af3c4f99a0b2bf3c96ec004028801ed0ba13b296",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/FileEntity.java",
+ "SPDXID": "SPDXRef-021716a79fadc8fd8e61360dae0f57c7",
+ "FileChecksumSHA1": "9488113243f28ff3ebba616154fea619359f7094",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/HttpEntityWrapper.java",
+ "SPDXID": "SPDXRef-25326ae6c1a91d492bd0872c7c544461",
+ "FileChecksumSHA1": "0df036cd1832cc65992f244f8e1b88d4bb43a0cc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/InputStreamEntity.java",
+ "SPDXID": "SPDXRef-39caa547ed0e411b99e06067ceaf622a",
+ "FileChecksumSHA1": "f49bfca481c386986b541f7654c190645219f4b6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/SerializableEntity.java",
+ "SPDXID": "SPDXRef-054bd21f1190e027b8327b0011292c36",
+ "FileChecksumSHA1": "01bfbe979d8fe1045965f7eec504b2c17abd994a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/StringEntity.java",
+ "SPDXID": "SPDXRef-ff52997fee428414061bb549213b0746",
+ "FileChecksumSHA1": "2f38369ca2e14d71a8e89db4821776cecd582c53",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/package.html",
+ "SPDXID": "SPDXRef-b5ac5b4709677f8c77c417adbf1a1d21",
+ "FileChecksumSHA1": "c266c5b824b3e75e485ce45209c2e0131c24c8e6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/AbstractHttpClientConnection.java",
+ "SPDXID": "SPDXRef-6aa884e63a60f228dada322a2be55eb1",
+ "FileChecksumSHA1": "60c9506d84e43a54cb35b0131fcef2d561b65a34",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/AbstractHttpServerConnection.java",
+ "SPDXID": "SPDXRef-db54171d0b9ec612e315e5e469c22389",
+ "FileChecksumSHA1": "12a96894adb6367732995927f14edda5a261b9cb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-ca992e14366950f76d80540600454fdf",
+ "FileChecksumSHA1": "b235c292e889109c039399a435fb007f5a0fc5af",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpClientConnection.java",
+ "SPDXID": "SPDXRef-072ce4db62584fd127fd7d820662ec33",
+ "FileChecksumSHA1": "b0fe5863c1e98b158fbd36242f68fa2c6a6341e2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpRequestFactory.java",
+ "SPDXID": "SPDXRef-eac4c904b353e05fde82ef1fdb641fa0",
+ "FileChecksumSHA1": "4fef9ad94732afc71f87f012dfbb438f58b23047",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpResponseFactory.java",
+ "SPDXID": "SPDXRef-e5fa7dfd482fbae937a01a04f325d7fc",
+ "FileChecksumSHA1": "769a10254111b78447ed43676e302f3bbd1a96f2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpServerConnection.java",
+ "SPDXID": "SPDXRef-ccdce7c6699e29dcf464fffc5e6b56f7",
+ "FileChecksumSHA1": "efeed4107cad605354ce5e6d18d4185dd502eb1c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/EnglishReasonPhraseCatalog.java",
+ "SPDXID": "SPDXRef-f5348a37a47f40580f9c929f3ebc4390",
+ "FileChecksumSHA1": "2101d57a0960b69fb2d67a916de7a99185ccd8b7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/HttpConnectionMetricsImpl.java",
+ "SPDXID": "SPDXRef-3c8cac9e9635c64871add03c7f5d6ded",
+ "FileChecksumSHA1": "bbd3be16c20910d708f6272f5a082fc45b400b8f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/NoConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-38a09b759ba556a4e52dd5c05fede165",
+ "FileChecksumSHA1": "2e88be3e8bd03bd318b54e70f12bd6d3e8cc8771",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/SocketHttpClientConnection.java",
+ "SPDXID": "SPDXRef-14b911bebd2a9a3ac12d79d71e690785",
+ "FileChecksumSHA1": "1112ab430be5d25afcf611678425d6e033f11233",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/SocketHttpServerConnection.java",
+ "SPDXID": "SPDXRef-0cff8a781838fbcd9257336e10e979d2",
+ "FileChecksumSHA1": "63da5106c1072a70e8fe170edf5bcfbfc9784a0b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/EntityDeserializer.java",
+ "SPDXID": "SPDXRef-64bbefd6177a3b5a85a4d4254279b728",
+ "FileChecksumSHA1": "12e8954a96ecf13892b7b8c6727479f9a5173c5b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/EntitySerializer.java",
+ "SPDXID": "SPDXRef-b71a1ef9b2da24120c17883169057889",
+ "FileChecksumSHA1": "c4635ad33e925d343710055a86b7338e30356edc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/LaxContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-24576661af5cb076b052ebc0d3edf8a9",
+ "FileChecksumSHA1": "5371bdee192f768887308da504f50793752d58b3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/StrictContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-cbea9eb8d12e053cfbe523a8077df292",
+ "FileChecksumSHA1": "03329a1d64525f4bee1b2e1f6aa6289388672e01",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/package.html",
+ "SPDXID": "SPDXRef-50ba07b6ce10fcf2cc4cb2bcf35d2996",
+ "FileChecksumSHA1": "260b6466229a20b6758971d4ce808578f023ec55",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractMessageParser.java",
+ "SPDXID": "SPDXRef-adf207f8d71b7d1d40fc8ea493f7c12a",
+ "FileChecksumSHA1": "bcce8bd96a89c8613e0b76151b62bdd94f6646cf",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractMessageWriter.java",
+ "SPDXID": "SPDXRef-7ae014443d392012a1a98fbf9512247a",
+ "FileChecksumSHA1": "6f3cddc463dcb271dd50a8f89acc6875e18c78d8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractSessionInputBuffer.java",
+ "SPDXID": "SPDXRef-0420819a7cff02007b3f93ba5a96a3a0",
+ "FileChecksumSHA1": "280d25c38fcd782d5712f50812ac7048ee00e460",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractSessionOutputBuffer.java",
+ "SPDXID": "SPDXRef-5f06807e17706589ba6577d36256ecf5",
+ "FileChecksumSHA1": "155392d94dbf53e4049eaaf30bdf5ec193dba293",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ChunkedInputStream.java",
+ "SPDXID": "SPDXRef-d74674fb1a3cd7ac1fcdf3abda39550a",
+ "FileChecksumSHA1": "91043294ca1b4fb0ed29d0922306e8b81f575c42",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ChunkedOutputStream.java",
+ "SPDXID": "SPDXRef-d2778064a8cf1f146cc4815bd9423168",
+ "FileChecksumSHA1": "66c8fe3947e0be3318383470912e99f7607ee97b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ContentLengthInputStream.java",
+ "SPDXID": "SPDXRef-ce36272cd9dd4dd981dae42f0a98521c",
+ "FileChecksumSHA1": "0b09d7e84096c5a55272fec7dc535b974ad74499",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ContentLengthOutputStream.java",
+ "SPDXID": "SPDXRef-1c74121cb51be5a326632abf1207a70d",
+ "FileChecksumSHA1": "1f37392e84a4484632e54df1c3b298d2090ddffd",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpRequestParser.java",
+ "SPDXID": "SPDXRef-5e1d50edd54bc4db0a72acf7c3856fa1",
+ "FileChecksumSHA1": "778c9b6c2006b609af7ca049cb97be3bb9aa1045",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpRequestWriter.java",
+ "SPDXID": "SPDXRef-8d666ae85911b7f214fe0b36eca6fb80",
+ "FileChecksumSHA1": "4aa8cc0f3d6d6f8e2276aecb5155b889ad14e08b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpResponseParser.java",
+ "SPDXID": "SPDXRef-b13c7106fbe83baa20ce44d8de8aa3c8",
+ "FileChecksumSHA1": "63eb075d35ff008367c00356ba4204c6bcab33c1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpResponseWriter.java",
+ "SPDXID": "SPDXRef-cf654851c62044d3fc97a71693bb3cc6",
+ "FileChecksumSHA1": "01b458af1e0e94a1bb43fa235ae65a74aab35521",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpTransportMetricsImpl.java",
+ "SPDXID": "SPDXRef-88c3970484ace2e5993ec8f928429090",
+ "FileChecksumSHA1": "964bc9544d21664e30a4e4f3a1e65be06774e3ed",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/IdentityInputStream.java",
+ "SPDXID": "SPDXRef-2258f1ace8ec65fabfe2c162f5bbacc7",
+ "FileChecksumSHA1": "6aad7307fa4218755f9bc6b4526d5b53458b3408",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/IdentityOutputStream.java",
+ "SPDXID": "SPDXRef-cdf9a9d1dcd1ae8bee35cce096ea54fa",
+ "FileChecksumSHA1": "9371bad68c344a7b956232d967cb1e6ea8d4b14b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/SocketInputBuffer.java",
+ "SPDXID": "SPDXRef-f0519cea6974451d8e08c3a94073d5cf",
+ "FileChecksumSHA1": "ed5a7f617e2bd32866f075fdde93993d3ea7b8c7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/SocketOutputBuffer.java",
+ "SPDXID": "SPDXRef-32ab84da7ad3ac698b1512518de79283",
+ "FileChecksumSHA1": "4c8bec5f77362b6053748a8b27fc868b578f8419",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/package.html",
+ "SPDXID": "SPDXRef-1cf0b89b20b7c28d009fccfeeeec1866",
+ "FileChecksumSHA1": "2773d92f35d6b1cbd88d221537cdd7e3480b44d4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/package.html",
+ "SPDXID": "SPDXRef-cc0daeb41e4d06c75637748eced33b88",
+ "FileChecksumSHA1": "9083591a4633127045b16597b3d84a003bd8b01c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/BufferInfo.java",
+ "SPDXID": "SPDXRef-19ede02dd6f03a9736e48e0cdad759b1",
+ "FileChecksumSHA1": "a451af2065ac796e9de471a8ac53034436034cb7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/EofSensor.java",
+ "SPDXID": "SPDXRef-477852f9afed582175b41dd8fa8d6f4a",
+ "FileChecksumSHA1": "bde59919372a2d411f44e64e41dc46765b0255a3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpMessageParser.java",
+ "SPDXID": "SPDXRef-4698dfade9e1f70f15214e1d78e67c67",
+ "FileChecksumSHA1": "a0d773abf026d0cf22da1ea6d4b70d54c81af45d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpMessageWriter.java",
+ "SPDXID": "SPDXRef-a5c3fde6f96badf95c0fcd3cca7733fa",
+ "FileChecksumSHA1": "acc7b93dd94582725212afc4a3fec8595d15b359",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpTransportMetrics.java",
+ "SPDXID": "SPDXRef-859b38db9c0f983eaefa25f2cdabbdca",
+ "FileChecksumSHA1": "dda133066859bfcdef3cb3969660e376a38b9102",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/SessionInputBuffer.java",
+ "SPDXID": "SPDXRef-7d90a1d7e9139ce4d9ea26a14cbdb181",
+ "FileChecksumSHA1": "bbd5dea1214626b80f4ff7d189b53323b0ba4f47",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/SessionOutputBuffer.java",
+ "SPDXID": "SPDXRef-8b9af53b595bff54491504774585f7f5",
+ "FileChecksumSHA1": "943960df12585acaa25424d19a76b824cfac6f53",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/package.html",
+ "SPDXID": "SPDXRef-ef6d077ada1dbe7dc09caeaeab1ea467",
+ "FileChecksumSHA1": "8b6848fb2b344845cc90d4bb6efe3a2b1041da04",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/AbstractHttpMessage.java",
+ "SPDXID": "SPDXRef-33f1f688e3e87f023d6349ae104193c3",
+ "FileChecksumSHA1": "9a42d7d775119bfd8b7c8e2612003071fb998db9",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeader.java",
+ "SPDXID": "SPDXRef-6a2d2c748ff54cd9085de7b9fd048fc2",
+ "FileChecksumSHA1": "14cb1671a2beefd0a2cd15cae74f68f6b2f16d0c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderElement.java",
+ "SPDXID": "SPDXRef-4322dc3d282d18af70ba4104d5da3b49",
+ "FileChecksumSHA1": "a2fb9cb773ca7123f9a216c07985036e23354c60",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderElementIterator.java",
+ "SPDXID": "SPDXRef-21c56612614e61c8edc777767c36455c",
+ "FileChecksumSHA1": "ea37d89184c7b66bc590efa97d5a011251ded313",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderIterator.java",
+ "SPDXID": "SPDXRef-dbc073ee7679b2292cce60cf0af3edb2",
+ "FileChecksumSHA1": "2e5d2a6c8c23c9445f4cf0ad8b19552f0f2ba841",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderValueFormatter.java",
+ "SPDXID": "SPDXRef-f14942d8d110498dca1aa1a8a418533a",
+ "FileChecksumSHA1": "a5710d3d1ae01960607981c7d0d1b3724770c8f5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderValueParser.java",
+ "SPDXID": "SPDXRef-da355a3c816fb55cc9aafe615aaf90f4",
+ "FileChecksumSHA1": "73b5947c03c8f0c36bac961b4bf8e24a5d244016",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpEntityEnclosingRequest.java",
+ "SPDXID": "SPDXRef-7b5ccf989e1b115d0b1e5bb8ae52fd8d",
+ "FileChecksumSHA1": "2661e29083919cc00b79bdb4bf8ffeef92541bd3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpRequest.java",
+ "SPDXID": "SPDXRef-2e36c1b9a3310cdd7cf2129924c60d60",
+ "FileChecksumSHA1": "e2a49cab5e94ff54165ac5a69cb56b614cd0a80d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpResponse.java",
+ "SPDXID": "SPDXRef-66786945ef03810b808fb16c7e9c1f9a",
+ "FileChecksumSHA1": "0e0c69290347151e1f21f20f0bfc144de5864d14",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicLineFormatter.java",
+ "SPDXID": "SPDXRef-6980e17f3ee8a5057847fc5d7164271d",
+ "FileChecksumSHA1": "8afa64fea967817fb1537b676a63b411dcd31295",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicLineParser.java",
+ "SPDXID": "SPDXRef-886d58a6e72fb46736995dd30647ba42",
+ "FileChecksumSHA1": "f76e18fc4371ed0dd4570886cc1e8cb415f518e5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicListHeaderIterator.java",
+ "SPDXID": "SPDXRef-728b0c59aca3b8678d9c455efdbf8ffa",
+ "FileChecksumSHA1": "5b6015f6caa0b22fabbff1119846b708b1e7d4e3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicNameValuePair.java",
+ "SPDXID": "SPDXRef-04b10d66f141ebeace2d53a5133932c6",
+ "FileChecksumSHA1": "d524a85abd584cda752dfb8fd12594adf1c9ef06",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicRequestLine.java",
+ "SPDXID": "SPDXRef-cb5de66a30b40214db5a22ffe9912b97",
+ "FileChecksumSHA1": "202e265c0fba335068e4af1d50a06e9294a40698",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicStatusLine.java",
+ "SPDXID": "SPDXRef-7b687791027769ee7e5791bc020b28db",
+ "FileChecksumSHA1": "5a5893ea5dc10959b978e928e0f14d49ac57f6d2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicTokenIterator.java",
+ "SPDXID": "SPDXRef-6e30fae1fe19913c61c6f5722c52d1bc",
+ "FileChecksumSHA1": "6482ffea3c6484bbb71a6690dd53a55b2bf578ef",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BufferedHeader.java",
+ "SPDXID": "SPDXRef-9e50d6464665a5d508a241456876549b",
+ "FileChecksumSHA1": "9f34be4657c037f393ab1e97483cdcdd9e0595f6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderGroup.java",
+ "SPDXID": "SPDXRef-1644dbfe7eb5352958b0e72b33a2fde1",
+ "FileChecksumSHA1": "dc2da1cbdc3d57fd190b9aea755d4de5efe3b1c7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderValueFormatter.java",
+ "SPDXID": "SPDXRef-b1c71b427925261d7efc99284618cda4",
+ "FileChecksumSHA1": "04a0ca72a8cdba1652da3ebea664208f181bc29d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderValueParser.java",
+ "SPDXID": "SPDXRef-a551d9e621ebf38da0b601a39fb46737",
+ "FileChecksumSHA1": "f38659f0b25e537cd16485fce1154c3d0459c1e3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/LineFormatter.java",
+ "SPDXID": "SPDXRef-0a8e40dd8a29f572c674ad2451fb9215",
+ "FileChecksumSHA1": "c3cf87e17dd359d38088d8460f35cda7a8138257",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/LineParser.java",
+ "SPDXID": "SPDXRef-c181fd1733db0dd9779a2702b789df66",
+ "FileChecksumSHA1": "db4f1946169f89317a6bfd7e44cceb4f84491cb0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/ParserCursor.java",
+ "SPDXID": "SPDXRef-c177c5fd5f2833dc89ff138b91f08dd9",
+ "FileChecksumSHA1": "63e7107771baa81115c9e88a8ebc5b0d98117f4b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/package.html",
+ "SPDXID": "SPDXRef-13acd443d88f10894e0425944e6d2c8b",
+ "FileChecksumSHA1": "2b0f5e66f409b5f9206672efea2e8cc1ee1a0f4f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/package.html",
+ "SPDXID": "SPDXRef-41389abb62b744d38a4562a1101fc66f",
+ "FileChecksumSHA1": "328c66b3236a7defc476222e61506f028f361bc4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/AbstractHttpParams.java",
+ "SPDXID": "SPDXRef-0a2272dbb478038e98b6dc4971c44e5a",
+ "FileChecksumSHA1": "0401305548fb392a2de0f99627cef7fee68cf6cb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/BasicHttpParams.java",
+ "SPDXID": "SPDXRef-ae65ee7b2c1275cbe70bb36f1728c29a",
+ "FileChecksumSHA1": "6c8c7474d6497cb9099e78cbf00b664b63d81c1d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/CoreConnectionPNames.java",
+ "SPDXID": "SPDXRef-bca8688a45313a452799e260692eb626",
+ "FileChecksumSHA1": "4fcf871dd397743bacc65231444ceb30270b90a8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/CoreProtocolPNames.java",
+ "SPDXID": "SPDXRef-435edfbade73eb68dc4784df3858f32e",
+ "FileChecksumSHA1": "004b8802e57c03ab1b5329524b6e89e7898eb7e7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/DefaultedHttpParams.java",
+ "SPDXID": "SPDXRef-7db1fafdaeb08e3e5ff455ccd8e8790d",
+ "FileChecksumSHA1": "22df83abee8830c832d4af4892b08bb6ae570fc5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpAbstractParamBean.java",
+ "SPDXID": "SPDXRef-0eb385d4c5edde073fbbd7dc4638efdd",
+ "FileChecksumSHA1": "cbeac10e6fa8cc1ab09bdbee3e9b0a34b0eda3a1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpConnectionParamBean.java",
+ "SPDXID": "SPDXRef-b42225a6075507de599eeaa5b473aa88",
+ "FileChecksumSHA1": "82bf253bcd11121d5174b1cafa7fcbc1f83e5681",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpConnectionParams.java",
+ "SPDXID": "SPDXRef-8fd20b3f8b79967efe8d483eaad814e9",
+ "FileChecksumSHA1": "7dbff412260f193b78ee012d4cb60faf27650c33",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpParams.java",
+ "SPDXID": "SPDXRef-4cb17e8e8678971cc375b907ae92baa2",
+ "FileChecksumSHA1": "b120d3eb0d015196a05639f57fa255477ecc4e6f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpProtocolParamBean.java",
+ "SPDXID": "SPDXRef-ddf2ebad33866bb62478f75e1b3a30ec",
+ "FileChecksumSHA1": "1eb1027b36e512b3d26a9c7eae61cdcb88ceac0d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpProtocolParams.java",
+ "SPDXID": "SPDXRef-ee997e5ac68b4f0137af8cb43c8a5ec3",
+ "FileChecksumSHA1": "388905a2839b997ceae198b0929fa716d36f27d4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/SyncBasicHttpParams.java",
+ "SPDXID": "SPDXRef-e2da50d95e7dbbf85b2a6f62be9e1073",
+ "FileChecksumSHA1": "abd359da40b7f4a818cddcdb84d4dbef5d89f6c8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/package.html",
+ "SPDXID": "SPDXRef-7a87dfbfc101e139515f3d62dc218ab6",
+ "FileChecksumSHA1": "d9d41dc12a6ba536473f59b602648d028fc4d354",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/BasicHttpContext.java",
+ "SPDXID": "SPDXRef-69fb9c0ac39e95f721ab7c36c5d7820a",
+ "FileChecksumSHA1": "c4624809af7d770dd989d0eb639dada0fda7f769",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/BasicHttpProcessor.java",
+ "SPDXID": "SPDXRef-6bb816595bffbf0cd2db2e08c38f559c",
+ "FileChecksumSHA1": "0c19c07eb2071fe7e620461d28f3b71fbdbdaacb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/DefaultedHttpContext.java",
+ "SPDXID": "SPDXRef-c12e96afbac928228b42c845c0892e82",
+ "FileChecksumSHA1": "515dc3d534b188cfa81d040576f88d87fadeb0a7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ExecutionContext.java",
+ "SPDXID": "SPDXRef-4efba662fa1a3ed04cfed0fc05f70be5",
+ "FileChecksumSHA1": "6511c78611616b08e74f1629e882d868e72f9543",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HTTP.java",
+ "SPDXID": "SPDXRef-f5236f96dd876f99cc543dff4e3fae01",
+ "FileChecksumSHA1": "ef0615a0ab8fc87942ca79705524791bad5625f5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpContext.java",
+ "SPDXID": "SPDXRef-c589e7ba75b7984793afffe8f41a0749",
+ "FileChecksumSHA1": "12b772e88ff602bc87a8f9ed275c1b77858ce1a0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpDateGenerator.java",
+ "SPDXID": "SPDXRef-cbccbf8a3e9ae592a71516fbf4d2f6c6",
+ "FileChecksumSHA1": "a45cca3585a4fbb49a5857946926e8913a2ac24f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpExpectationVerifier.java",
+ "SPDXID": "SPDXRef-84403f390e749689a1c403b216f5c69e",
+ "FileChecksumSHA1": "6616a01ccdf1b6d3868b086296181ff47416574a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpProcessor.java",
+ "SPDXID": "SPDXRef-dce93e7b54f142eeca687c42ecec3d6a",
+ "FileChecksumSHA1": "4170b9a6ca01df2ca720d5d5a7147fd326aaed0c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestExecutor.java",
+ "SPDXID": "SPDXRef-69d3908f28e283c2e69366d0fb73ff28",
+ "FileChecksumSHA1": "0ac2362c432520beabb6a4f0f0adb71eea3efb48",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandler.java",
+ "SPDXID": "SPDXRef-e84d53fdef8f5b900ad1527484973dd8",
+ "FileChecksumSHA1": "54402e85c90ae80c183640cdb675f61e2a508d7d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandlerRegistry.java",
+ "SPDXID": "SPDXRef-eff72e757556e176119a725c27cba3eb",
+ "FileChecksumSHA1": "788980988e1cefac802e1fb84b84530e13cb9d32",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandlerResolver.java",
+ "SPDXID": "SPDXRef-1e85e87d3f2f784e212b7305a9ef974d",
+ "FileChecksumSHA1": "e7a15d8c899727ffd0b878699000ea70128d4b9c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestInterceptorList.java",
+ "SPDXID": "SPDXRef-37c92da5e431c8d258cf3f07b186d79f",
+ "FileChecksumSHA1": "189594259d89575a67db918788e1a76cef75d1a6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpResponseInterceptorList.java",
+ "SPDXID": "SPDXRef-5d17ca8ca307ced9b5443186540d7df9",
+ "FileChecksumSHA1": "1e90c2b40bcd8adfecf16dd4cc5b67e6c7d7ee66",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpService.java",
+ "SPDXID": "SPDXRef-8b0e638235420a4f9da44a65e40bf095",
+ "FileChecksumSHA1": "67ede2152d32557bf806a59bdf1386259099e7eb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ImmutableHttpProcessor.java",
+ "SPDXID": "SPDXRef-02251af6e711d26d6b38e5a7ac858e36",
+ "FileChecksumSHA1": "1a2aa84cd3030c635537cf3d808c22904e5d14e5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestConnControl.java",
+ "SPDXID": "SPDXRef-953001f6c2ce2647245ecb5ec099bc6b",
+ "FileChecksumSHA1": "9aedfb9e2cc05e9517762a751b10c89b9524b121",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestContent.java",
+ "SPDXID": "SPDXRef-1736c1c65185360ddc0e06fb67752510",
+ "FileChecksumSHA1": "a36a8fed96333c8515accb18b903832f57ce788b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestDate.java",
+ "SPDXID": "SPDXRef-321386931fa1e40ec415de29a9a6b5ed",
+ "FileChecksumSHA1": "452da3305c92d468017d0ed99b3c804da6d41b66",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestExpectContinue.java",
+ "SPDXID": "SPDXRef-1a7122c250d2d03c4aea1b103dbeb6a9",
+ "FileChecksumSHA1": "6fde1da5af235ca29fe54107d5765a6d65450a43",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestTargetHost.java",
+ "SPDXID": "SPDXRef-320d291be4d9ac13df53c17e4e83a680",
+ "FileChecksumSHA1": "ee23fd878b23fa63ed4a0ec3eddb32cfedba5340",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestUserAgent.java",
+ "SPDXID": "SPDXRef-75ebc0392ff08b727c3bacdbc26d1729",
+ "FileChecksumSHA1": "0ba2f64e37fcefbafd4f7a0f531e75e037bf59f4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseConnControl.java",
+ "SPDXID": "SPDXRef-49b2bd0e84ccbf903fadff5e2b1f7f74",
+ "FileChecksumSHA1": "7c73e05a6a06d46c02cf2dc19aaee81d554c2af2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseContent.java",
+ "SPDXID": "SPDXRef-a6f2b006dc45f181e594773285295ff2",
+ "FileChecksumSHA1": "407855877268538c9ef0ba58d2687e6faf069fc7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseDate.java",
+ "SPDXID": "SPDXRef-bd8cd24a75dce126e4d963d029b7755f",
+ "FileChecksumSHA1": "eb6e0cb2d8e53fa55e1cc3a4b6b9875fda25ffb7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseServer.java",
+ "SPDXID": "SPDXRef-480136507b116bdd250c389f0772a1d5",
+ "FileChecksumSHA1": "3c1b6ec6a9034204e5d52097aebec14692c69e36",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/SyncBasicHttpContext.java",
+ "SPDXID": "SPDXRef-7d6e7f9684324f102d033ad113680044",
+ "FileChecksumSHA1": "904b96563dd0e8e3de062ee1978b7b72eb9833f6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/UriPatternMatcher.java",
+ "SPDXID": "SPDXRef-e264c27fb6a7ee0477186451600424d7",
+ "FileChecksumSHA1": "a96a7d37174a005f5ff4c61c09cb0e58e505c515",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/package.html",
+ "SPDXID": "SPDXRef-cc77244005fad730e41527fa5c47bfc4",
+ "FileChecksumSHA1": "31dc05a3967b44dac9831ce7005296fc39b4c098",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/ByteArrayBuffer.java",
+ "SPDXID": "SPDXRef-6cbe8608cf1cf1ca94ab0b11f4140c0e",
+ "FileChecksumSHA1": "1f43327077a86f45f27b9b8f81f534ac2c6247fc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/CharArrayBuffer.java",
+ "SPDXID": "SPDXRef-4b32b132710f2afed5f774d69408e042",
+ "FileChecksumSHA1": "b8a396d8e1b5eaebdfff7582615d0abc29ad10cc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/EncodingUtils.java",
+ "SPDXID": "SPDXRef-208b4a2d6917996da5a542770252567e",
+ "FileChecksumSHA1": "ebcb4d1a312503192ed1d40c1750eccf9b0496bc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/EntityUtils.java",
+ "SPDXID": "SPDXRef-fd2c88a2350f366fd9924d0963033521",
+ "FileChecksumSHA1": "5f32e1f2fb8848b00854498e26fa52b83fd03cff",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/ExceptionUtils.java",
+ "SPDXID": "SPDXRef-e333ba689e15d92ec4d6018434352a42",
+ "FileChecksumSHA1": "2c4bc02be0d5e4ef35c6c2e0e06fa57f5f195113",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/LangUtils.java",
+ "SPDXID": "SPDXRef-4b9d6cdf424dc2a5dd89723f14f98021",
+ "FileChecksumSHA1": "ecfd92682e5e564c2193cb1fbf460f101716714e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/VersionInfo.java",
+ "SPDXID": "SPDXRef-969346fb62387f62ec3a62393641d8c6",
+ "FileChecksumSHA1": "d9f180dd61eabf70a1b9cfed4fa74d6312ad16d0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/package.html",
+ "SPDXID": "SPDXRef-868df6818a07eb99a7304733bda61757",
+ "FileChecksumSHA1": "6e7e6142aa8c0380a56c3b1d3298b7de49c2d3e4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/version.properties",
+ "SPDXID": "SPDXRef-8e1a286cac40e71108869ffcd10c5e86",
+ "FileChecksumSHA1": "0cfffd33e6ddaa9fb575bf1e57cddbc2d3254fff",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ }
+ ],
+ "licenses": []
+ }
+ },
+ "3.2.2": {
+ "_metadata": {
+ "type": "reuse",
+ "url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1",
+ "fetchedAt": "2024-05-13T14:15:21.920Z",
+ "links": {
+ "self": {
+ "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:reuse:3.2.2",
+ "type": "resource"
+ },
+ "siblings": {
+ "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:reuse",
+ "type": "collection"
+ }
+ },
+ "schemaVersion": "3.2.2",
+ "toolVersion": "3.0.2",
+ "processedAt": "2024-05-13T14:15:22.390Z"
+ },
+ "reuse": {
+ "metadata": {
+ "SPDXVersion": "SPDX-2.1",
+ "DataLicense": "CC0-1.0",
+ "SPDXID": "SPDXRef-DOCUMENT",
+ "DocumentName": "cd-AQgYDu",
+ "DocumentNamespace": "http://spdx.org/spdxdocs/spdx-v2.1-d2be3e3a-a79c-4686-b0ca-00a2ba52afed",
+ "CreatorPerson": "Anonymous ()",
+ "CreatorOrganization": "Anonymous ()",
+ "CreatorTool": "reuse-3.0.2",
+ "Created": "2024-05-13T14:15:22+00:00Z",
+ "CreatorComment": "This document was created automatically using available reuse information consistent with REUSE."
+ },
+ "files": [
+ {
+ "FileName": "META-INF/MANIFEST.MF",
+ "SPDXID": "SPDXRef-de6b109719aa5a22bd7c440c6b612fa6",
+ "FileChecksumSHA1": "d1efee3a8c440a568c4860ffa6cf4c463ff41b76",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "META-INF/NOTICE.txt",
+ "SPDXID": "SPDXRef-1f4b75d17e279471b8d968acfda373af",
+ "FileChecksumSHA1": "7a2fa8cdb386ec3ab29c165f9cd21e22177011de",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "Copyright 2005-2010 The Apache Software Foundation"
+ },
+ {
+ "FileName": "org/apache/http/ConnectionClosedException.java",
+ "SPDXID": "SPDXRef-9bae0ce60614db259ac49e52f3da02c0",
+ "FileChecksumSHA1": "09d2023caa789224e6a0f9eb5aca902055fb5888",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-0c192c1a0f469016d9ee405b3210b1d5",
+ "FileChecksumSHA1": "c29a8161e5d618f91b0b1506468a5bf3d9059374",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/FormattedHeader.java",
+ "SPDXID": "SPDXRef-1b9375aa0cbcaddd75e4fc67d8133dff",
+ "FileChecksumSHA1": "cfa74bb83c4a74c118fa4f892cd0dfb93468264a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/Header.java",
+ "SPDXID": "SPDXRef-5d12ae6c94b1a234f241f4d6e125175a",
+ "FileChecksumSHA1": "56c8765d09f121242787eff1dcf8e2df6493121f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderElement.java",
+ "SPDXID": "SPDXRef-99640c13027b73bc1085988ba940ebda",
+ "FileChecksumSHA1": "5bf3e02851084299a5bdb0e18f95cdb6cc0849a2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderElementIterator.java",
+ "SPDXID": "SPDXRef-b0b3f3e45c5618164de5a0898be307cf",
+ "FileChecksumSHA1": "18bc5ab1639c36c06b55d5a6cce6e70c68a0dbd6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HeaderIterator.java",
+ "SPDXID": "SPDXRef-4fcc6c330d727c7be3c50e02f183ca35",
+ "FileChecksumSHA1": "f0b4b86111a065f1d615f20eebc3eaec9cafb581",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpClientConnection.java",
+ "SPDXID": "SPDXRef-e52e41de4b0228009716d780ccdbd41f",
+ "FileChecksumSHA1": "63c61b28b460e1a35eee1ecc536112c65dab1290",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpConnection.java",
+ "SPDXID": "SPDXRef-0056ffe2681be5099efdd4d80644cde6",
+ "FileChecksumSHA1": "9748bf675ec200953817f916f95a5e22fe3387a3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpConnectionMetrics.java",
+ "SPDXID": "SPDXRef-c7b8b6fbc1bcba804a5f2a021a07a717",
+ "FileChecksumSHA1": "6b3d3a427d0cce3386aa855b4e9cf5b33ab57a3e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpEntity.java",
+ "SPDXID": "SPDXRef-ec3ae396bc556f100fdb23ce5a7a7672",
+ "FileChecksumSHA1": "0925b67f19bf70db3ff07e1653656c709b8bb405",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpEntityEnclosingRequest.java",
+ "SPDXID": "SPDXRef-4729363229ca89d6afa66bfa6d94dd00",
+ "FileChecksumSHA1": "890b3c0d39ec5283894e84ae694380b6938bac64",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpException.java",
+ "SPDXID": "SPDXRef-a4de0876627ec75ecdd989673297ff2a",
+ "FileChecksumSHA1": "ec0511e1b1d58b9e61c29b4e8306be5b223c4b6c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpHeaders.java",
+ "SPDXID": "SPDXRef-e3073c697b5ddff69e7ea52b8c690cec",
+ "FileChecksumSHA1": "186aa17acc44cdffb90f518c5c878aa0a1bff0fb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpHost.java",
+ "SPDXID": "SPDXRef-bed19bccfcd980bf45cc437c7766986d",
+ "FileChecksumSHA1": "e76f64ae716af51fd1a4c4e3ea4954f86ef45bcf",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpInetConnection.java",
+ "SPDXID": "SPDXRef-0eabfd00066468146b755f13d1928d30",
+ "FileChecksumSHA1": "1b96c2122d5767c6d4d6cb36306c49b300ec819d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpMessage.java",
+ "SPDXID": "SPDXRef-550ee718382fdbb302eaf2d5bb6dae96",
+ "FileChecksumSHA1": "cd15c87564a9b2bc73ac874d6f476a35beb6efb8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequest.java",
+ "SPDXID": "SPDXRef-40177034104413e5bf012636b4b965f7",
+ "FileChecksumSHA1": "451d11743a5e75a64a378039344783d4e80a76ef",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequestFactory.java",
+ "SPDXID": "SPDXRef-53d60adbd31e32aec69a8fba2d1c02ca",
+ "FileChecksumSHA1": "3f86d512781bae2ea157ee456d38ca77b3d77d88",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpRequestInterceptor.java",
+ "SPDXID": "SPDXRef-a8bb3b2efc94acd00238433ed60a6600",
+ "FileChecksumSHA1": "86457e6bccedca3a5260e4ce4d3930a005952ba2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponse.java",
+ "SPDXID": "SPDXRef-00c3a1fa4f159f9667f16212e5db2297",
+ "FileChecksumSHA1": "fe4530eb9215e6afeafac9c192ac3c29961acb1d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponseFactory.java",
+ "SPDXID": "SPDXRef-760775d5df03fd481bc2cbb526ea291e",
+ "FileChecksumSHA1": "2a02ed003c2ee607dfbe5a01294dbc53823d7d5e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpResponseInterceptor.java",
+ "SPDXID": "SPDXRef-479db00003a2433ee3bf71d664c3dccc",
+ "FileChecksumSHA1": "75df9e63113bddd95ea52f9d3c94a8896697b979",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpServerConnection.java",
+ "SPDXID": "SPDXRef-655784e08665fe723245f7cc76bdef88",
+ "FileChecksumSHA1": "8495796dee60aef41a58627dd65999ab6a8e0289",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpStatus.java",
+ "SPDXID": "SPDXRef-4a191965fe299584ff3e80a390b713a9",
+ "FileChecksumSHA1": "265cf51183216b610b661e9dd68603cd7860846f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/HttpVersion.java",
+ "SPDXID": "SPDXRef-57e4f3c2e6427740549a2ac98bef3e37",
+ "FileChecksumSHA1": "aa0d140a334b5d7f5291e4adc86efd2ce63408d0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/MalformedChunkCodingException.java",
+ "SPDXID": "SPDXRef-c809b0e5545e6cf4375f81822b194e8c",
+ "FileChecksumSHA1": "8599f21cd854fffa1a6759f66e0fa116fea958a7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/MethodNotSupportedException.java",
+ "SPDXID": "SPDXRef-bb533aec0d4fd33f2294337e83eb1c45",
+ "FileChecksumSHA1": "0f36b2d46981f6d9125bef485ca868646ff2cbea",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/NameValuePair.java",
+ "SPDXID": "SPDXRef-918ffef1ed12b27ff7560ca1e68e1489",
+ "FileChecksumSHA1": "82c2009c5bfb0cec1431e44e615f841bd18cd07e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/NoHttpResponseException.java",
+ "SPDXID": "SPDXRef-383e4243a94b1446851b50a6409004f0",
+ "FileChecksumSHA1": "71292280cb85fbb291626b02e3bd5291b5eb6d45",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ParseException.java",
+ "SPDXID": "SPDXRef-0c9f2220f92707f53952990303116525",
+ "FileChecksumSHA1": "7af794c44df567bb83e64c13d537c97077962ed3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ProtocolException.java",
+ "SPDXID": "SPDXRef-29b1f6aa685fa283ccf93b6657cf7391",
+ "FileChecksumSHA1": "f81e9b126889e99227e1c91327c23dbaa8693c42",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ProtocolVersion.java",
+ "SPDXID": "SPDXRef-38fb2a0669c3fc7be5897afdf1ff85e3",
+ "FileChecksumSHA1": "f0d6e0dc2c49eb902354ebc07a94a315866fecac",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/ReasonPhraseCatalog.java",
+ "SPDXID": "SPDXRef-0ca22000d56e9c1650fc63c5874cbf13",
+ "FileChecksumSHA1": "b931f4350037937832a7bd03b9765b600583d263",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/RequestLine.java",
+ "SPDXID": "SPDXRef-3110fe6ae178e350c9633fddbdc11920",
+ "FileChecksumSHA1": "b39362f01a7dc2246c3ac86a0d9b8f8dd1118d0b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/StatusLine.java",
+ "SPDXID": "SPDXRef-75340346afd56fdec614ebcd908f9a67",
+ "FileChecksumSHA1": "582eb19dece77407f39a0efc8cde483fcb12ee4e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/TokenIterator.java",
+ "SPDXID": "SPDXRef-e778e8004c1f25bd048d18e75bf2281e",
+ "FileChecksumSHA1": "f3b13f34a13778b0a11bb4e35620ab952e8eccfe",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/TruncatedChunkException.java",
+ "SPDXID": "SPDXRef-b5f422117bd1b18a4fba5e9609f9ac1f",
+ "FileChecksumSHA1": "b891629e7af31971f2dd97ef03c127e2cce37a67",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/UnsupportedHttpVersionException.java",
+ "SPDXID": "SPDXRef-65a1deaf3ca723653357eae718e438e5",
+ "FileChecksumSHA1": "3241e436404a7fcf713c4dc4edeed4732b7d46a0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/AbstractHttpEntity.java",
+ "SPDXID": "SPDXRef-640f1de3d69d88e548f3e274cbcbc897",
+ "FileChecksumSHA1": "c856d7f8e0c40b3363d5932c37ef4c25364eb9e1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/BasicHttpEntity.java",
+ "SPDXID": "SPDXRef-7e659a20cb49ee83ae556875446633e1",
+ "FileChecksumSHA1": "dddf065f662285729466b433a6d606f39985a4dc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/BufferedHttpEntity.java",
+ "SPDXID": "SPDXRef-801d66b9a897348109cdd253142ed742",
+ "FileChecksumSHA1": "f769eb9ff59cd0a50295e2c1426c97c40780a703",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ByteArrayEntity.java",
+ "SPDXID": "SPDXRef-6bf9c0611cf8a6b58db636cf593de38f",
+ "FileChecksumSHA1": "8eef873c4e188be7b4096e70f9942d9eb1874a9e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-92b653801fd6e0da487b6643841479e1",
+ "FileChecksumSHA1": "49020f1bf8af79239880a4f8b41502633d992f16",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/ContentProducer.java",
+ "SPDXID": "SPDXRef-6bc95d3422eead43b3c71df9db82113c",
+ "FileChecksumSHA1": "221ae577191d451997785b76dc82e331fd0243b0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/EntityTemplate.java",
+ "SPDXID": "SPDXRef-3ebb7bbfca17278556ff75d03e5776f1",
+ "FileChecksumSHA1": "af3c4f99a0b2bf3c96ec004028801ed0ba13b296",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/FileEntity.java",
+ "SPDXID": "SPDXRef-021716a79fadc8fd8e61360dae0f57c7",
+ "FileChecksumSHA1": "9488113243f28ff3ebba616154fea619359f7094",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/HttpEntityWrapper.java",
+ "SPDXID": "SPDXRef-25326ae6c1a91d492bd0872c7c544461",
+ "FileChecksumSHA1": "0df036cd1832cc65992f244f8e1b88d4bb43a0cc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/InputStreamEntity.java",
+ "SPDXID": "SPDXRef-39caa547ed0e411b99e06067ceaf622a",
+ "FileChecksumSHA1": "f49bfca481c386986b541f7654c190645219f4b6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/SerializableEntity.java",
+ "SPDXID": "SPDXRef-054bd21f1190e027b8327b0011292c36",
+ "FileChecksumSHA1": "01bfbe979d8fe1045965f7eec504b2c17abd994a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/StringEntity.java",
+ "SPDXID": "SPDXRef-ff52997fee428414061bb549213b0746",
+ "FileChecksumSHA1": "2f38369ca2e14d71a8e89db4821776cecd582c53",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/entity/package.html",
+ "SPDXID": "SPDXRef-b5ac5b4709677f8c77c417adbf1a1d21",
+ "FileChecksumSHA1": "c266c5b824b3e75e485ce45209c2e0131c24c8e6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/AbstractHttpClientConnection.java",
+ "SPDXID": "SPDXRef-6aa884e63a60f228dada322a2be55eb1",
+ "FileChecksumSHA1": "60c9506d84e43a54cb35b0131fcef2d561b65a34",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/AbstractHttpServerConnection.java",
+ "SPDXID": "SPDXRef-db54171d0b9ec612e315e5e469c22389",
+ "FileChecksumSHA1": "12a96894adb6367732995927f14edda5a261b9cb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-ca992e14366950f76d80540600454fdf",
+ "FileChecksumSHA1": "b235c292e889109c039399a435fb007f5a0fc5af",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpClientConnection.java",
+ "SPDXID": "SPDXRef-072ce4db62584fd127fd7d820662ec33",
+ "FileChecksumSHA1": "b0fe5863c1e98b158fbd36242f68fa2c6a6341e2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpRequestFactory.java",
+ "SPDXID": "SPDXRef-eac4c904b353e05fde82ef1fdb641fa0",
+ "FileChecksumSHA1": "4fef9ad94732afc71f87f012dfbb438f58b23047",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpResponseFactory.java",
+ "SPDXID": "SPDXRef-e5fa7dfd482fbae937a01a04f325d7fc",
+ "FileChecksumSHA1": "769a10254111b78447ed43676e302f3bbd1a96f2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/DefaultHttpServerConnection.java",
+ "SPDXID": "SPDXRef-ccdce7c6699e29dcf464fffc5e6b56f7",
+ "FileChecksumSHA1": "efeed4107cad605354ce5e6d18d4185dd502eb1c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/EnglishReasonPhraseCatalog.java",
+ "SPDXID": "SPDXRef-f5348a37a47f40580f9c929f3ebc4390",
+ "FileChecksumSHA1": "2101d57a0960b69fb2d67a916de7a99185ccd8b7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/HttpConnectionMetricsImpl.java",
+ "SPDXID": "SPDXRef-3c8cac9e9635c64871add03c7f5d6ded",
+ "FileChecksumSHA1": "bbd3be16c20910d708f6272f5a082fc45b400b8f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/NoConnectionReuseStrategy.java",
+ "SPDXID": "SPDXRef-38a09b759ba556a4e52dd5c05fede165",
+ "FileChecksumSHA1": "2e88be3e8bd03bd318b54e70f12bd6d3e8cc8771",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/SocketHttpClientConnection.java",
+ "SPDXID": "SPDXRef-14b911bebd2a9a3ac12d79d71e690785",
+ "FileChecksumSHA1": "1112ab430be5d25afcf611678425d6e033f11233",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/SocketHttpServerConnection.java",
+ "SPDXID": "SPDXRef-0cff8a781838fbcd9257336e10e979d2",
+ "FileChecksumSHA1": "63da5106c1072a70e8fe170edf5bcfbfc9784a0b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/EntityDeserializer.java",
+ "SPDXID": "SPDXRef-64bbefd6177a3b5a85a4d4254279b728",
+ "FileChecksumSHA1": "12e8954a96ecf13892b7b8c6727479f9a5173c5b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/EntitySerializer.java",
+ "SPDXID": "SPDXRef-b71a1ef9b2da24120c17883169057889",
+ "FileChecksumSHA1": "c4635ad33e925d343710055a86b7338e30356edc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/LaxContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-24576661af5cb076b052ebc0d3edf8a9",
+ "FileChecksumSHA1": "5371bdee192f768887308da504f50793752d58b3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/StrictContentLengthStrategy.java",
+ "SPDXID": "SPDXRef-cbea9eb8d12e053cfbe523a8077df292",
+ "FileChecksumSHA1": "03329a1d64525f4bee1b2e1f6aa6289388672e01",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/entity/package.html",
+ "SPDXID": "SPDXRef-50ba07b6ce10fcf2cc4cb2bcf35d2996",
+ "FileChecksumSHA1": "260b6466229a20b6758971d4ce808578f023ec55",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractMessageParser.java",
+ "SPDXID": "SPDXRef-adf207f8d71b7d1d40fc8ea493f7c12a",
+ "FileChecksumSHA1": "bcce8bd96a89c8613e0b76151b62bdd94f6646cf",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractMessageWriter.java",
+ "SPDXID": "SPDXRef-7ae014443d392012a1a98fbf9512247a",
+ "FileChecksumSHA1": "6f3cddc463dcb271dd50a8f89acc6875e18c78d8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractSessionInputBuffer.java",
+ "SPDXID": "SPDXRef-0420819a7cff02007b3f93ba5a96a3a0",
+ "FileChecksumSHA1": "280d25c38fcd782d5712f50812ac7048ee00e460",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/AbstractSessionOutputBuffer.java",
+ "SPDXID": "SPDXRef-5f06807e17706589ba6577d36256ecf5",
+ "FileChecksumSHA1": "155392d94dbf53e4049eaaf30bdf5ec193dba293",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ChunkedInputStream.java",
+ "SPDXID": "SPDXRef-d74674fb1a3cd7ac1fcdf3abda39550a",
+ "FileChecksumSHA1": "91043294ca1b4fb0ed29d0922306e8b81f575c42",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ChunkedOutputStream.java",
+ "SPDXID": "SPDXRef-d2778064a8cf1f146cc4815bd9423168",
+ "FileChecksumSHA1": "66c8fe3947e0be3318383470912e99f7607ee97b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ContentLengthInputStream.java",
+ "SPDXID": "SPDXRef-ce36272cd9dd4dd981dae42f0a98521c",
+ "FileChecksumSHA1": "0b09d7e84096c5a55272fec7dc535b974ad74499",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/ContentLengthOutputStream.java",
+ "SPDXID": "SPDXRef-1c74121cb51be5a326632abf1207a70d",
+ "FileChecksumSHA1": "1f37392e84a4484632e54df1c3b298d2090ddffd",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpRequestParser.java",
+ "SPDXID": "SPDXRef-5e1d50edd54bc4db0a72acf7c3856fa1",
+ "FileChecksumSHA1": "778c9b6c2006b609af7ca049cb97be3bb9aa1045",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpRequestWriter.java",
+ "SPDXID": "SPDXRef-8d666ae85911b7f214fe0b36eca6fb80",
+ "FileChecksumSHA1": "4aa8cc0f3d6d6f8e2276aecb5155b889ad14e08b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpResponseParser.java",
+ "SPDXID": "SPDXRef-b13c7106fbe83baa20ce44d8de8aa3c8",
+ "FileChecksumSHA1": "63eb075d35ff008367c00356ba4204c6bcab33c1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpResponseWriter.java",
+ "SPDXID": "SPDXRef-cf654851c62044d3fc97a71693bb3cc6",
+ "FileChecksumSHA1": "01b458af1e0e94a1bb43fa235ae65a74aab35521",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/HttpTransportMetricsImpl.java",
+ "SPDXID": "SPDXRef-88c3970484ace2e5993ec8f928429090",
+ "FileChecksumSHA1": "964bc9544d21664e30a4e4f3a1e65be06774e3ed",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/IdentityInputStream.java",
+ "SPDXID": "SPDXRef-2258f1ace8ec65fabfe2c162f5bbacc7",
+ "FileChecksumSHA1": "6aad7307fa4218755f9bc6b4526d5b53458b3408",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/IdentityOutputStream.java",
+ "SPDXID": "SPDXRef-cdf9a9d1dcd1ae8bee35cce096ea54fa",
+ "FileChecksumSHA1": "9371bad68c344a7b956232d967cb1e6ea8d4b14b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/SocketInputBuffer.java",
+ "SPDXID": "SPDXRef-f0519cea6974451d8e08c3a94073d5cf",
+ "FileChecksumSHA1": "ed5a7f617e2bd32866f075fdde93993d3ea7b8c7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/SocketOutputBuffer.java",
+ "SPDXID": "SPDXRef-32ab84da7ad3ac698b1512518de79283",
+ "FileChecksumSHA1": "4c8bec5f77362b6053748a8b27fc868b578f8419",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/io/package.html",
+ "SPDXID": "SPDXRef-1cf0b89b20b7c28d009fccfeeeec1866",
+ "FileChecksumSHA1": "2773d92f35d6b1cbd88d221537cdd7e3480b44d4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/impl/package.html",
+ "SPDXID": "SPDXRef-cc0daeb41e4d06c75637748eced33b88",
+ "FileChecksumSHA1": "9083591a4633127045b16597b3d84a003bd8b01c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/BufferInfo.java",
+ "SPDXID": "SPDXRef-19ede02dd6f03a9736e48e0cdad759b1",
+ "FileChecksumSHA1": "a451af2065ac796e9de471a8ac53034436034cb7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/EofSensor.java",
+ "SPDXID": "SPDXRef-477852f9afed582175b41dd8fa8d6f4a",
+ "FileChecksumSHA1": "bde59919372a2d411f44e64e41dc46765b0255a3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpMessageParser.java",
+ "SPDXID": "SPDXRef-4698dfade9e1f70f15214e1d78e67c67",
+ "FileChecksumSHA1": "a0d773abf026d0cf22da1ea6d4b70d54c81af45d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpMessageWriter.java",
+ "SPDXID": "SPDXRef-a5c3fde6f96badf95c0fcd3cca7733fa",
+ "FileChecksumSHA1": "acc7b93dd94582725212afc4a3fec8595d15b359",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/HttpTransportMetrics.java",
+ "SPDXID": "SPDXRef-859b38db9c0f983eaefa25f2cdabbdca",
+ "FileChecksumSHA1": "dda133066859bfcdef3cb3969660e376a38b9102",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/SessionInputBuffer.java",
+ "SPDXID": "SPDXRef-7d90a1d7e9139ce4d9ea26a14cbdb181",
+ "FileChecksumSHA1": "bbd5dea1214626b80f4ff7d189b53323b0ba4f47",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/SessionOutputBuffer.java",
+ "SPDXID": "SPDXRef-8b9af53b595bff54491504774585f7f5",
+ "FileChecksumSHA1": "943960df12585acaa25424d19a76b824cfac6f53",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/io/package.html",
+ "SPDXID": "SPDXRef-ef6d077ada1dbe7dc09caeaeab1ea467",
+ "FileChecksumSHA1": "8b6848fb2b344845cc90d4bb6efe3a2b1041da04",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/AbstractHttpMessage.java",
+ "SPDXID": "SPDXRef-33f1f688e3e87f023d6349ae104193c3",
+ "FileChecksumSHA1": "9a42d7d775119bfd8b7c8e2612003071fb998db9",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeader.java",
+ "SPDXID": "SPDXRef-6a2d2c748ff54cd9085de7b9fd048fc2",
+ "FileChecksumSHA1": "14cb1671a2beefd0a2cd15cae74f68f6b2f16d0c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderElement.java",
+ "SPDXID": "SPDXRef-4322dc3d282d18af70ba4104d5da3b49",
+ "FileChecksumSHA1": "a2fb9cb773ca7123f9a216c07985036e23354c60",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderElementIterator.java",
+ "SPDXID": "SPDXRef-21c56612614e61c8edc777767c36455c",
+ "FileChecksumSHA1": "ea37d89184c7b66bc590efa97d5a011251ded313",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderIterator.java",
+ "SPDXID": "SPDXRef-dbc073ee7679b2292cce60cf0af3edb2",
+ "FileChecksumSHA1": "2e5d2a6c8c23c9445f4cf0ad8b19552f0f2ba841",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderValueFormatter.java",
+ "SPDXID": "SPDXRef-f14942d8d110498dca1aa1a8a418533a",
+ "FileChecksumSHA1": "a5710d3d1ae01960607981c7d0d1b3724770c8f5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHeaderValueParser.java",
+ "SPDXID": "SPDXRef-da355a3c816fb55cc9aafe615aaf90f4",
+ "FileChecksumSHA1": "73b5947c03c8f0c36bac961b4bf8e24a5d244016",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpEntityEnclosingRequest.java",
+ "SPDXID": "SPDXRef-7b5ccf989e1b115d0b1e5bb8ae52fd8d",
+ "FileChecksumSHA1": "2661e29083919cc00b79bdb4bf8ffeef92541bd3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpRequest.java",
+ "SPDXID": "SPDXRef-2e36c1b9a3310cdd7cf2129924c60d60",
+ "FileChecksumSHA1": "e2a49cab5e94ff54165ac5a69cb56b614cd0a80d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicHttpResponse.java",
+ "SPDXID": "SPDXRef-66786945ef03810b808fb16c7e9c1f9a",
+ "FileChecksumSHA1": "0e0c69290347151e1f21f20f0bfc144de5864d14",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicLineFormatter.java",
+ "SPDXID": "SPDXRef-6980e17f3ee8a5057847fc5d7164271d",
+ "FileChecksumSHA1": "8afa64fea967817fb1537b676a63b411dcd31295",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicLineParser.java",
+ "SPDXID": "SPDXRef-886d58a6e72fb46736995dd30647ba42",
+ "FileChecksumSHA1": "f76e18fc4371ed0dd4570886cc1e8cb415f518e5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicListHeaderIterator.java",
+ "SPDXID": "SPDXRef-728b0c59aca3b8678d9c455efdbf8ffa",
+ "FileChecksumSHA1": "5b6015f6caa0b22fabbff1119846b708b1e7d4e3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicNameValuePair.java",
+ "SPDXID": "SPDXRef-04b10d66f141ebeace2d53a5133932c6",
+ "FileChecksumSHA1": "d524a85abd584cda752dfb8fd12594adf1c9ef06",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicRequestLine.java",
+ "SPDXID": "SPDXRef-cb5de66a30b40214db5a22ffe9912b97",
+ "FileChecksumSHA1": "202e265c0fba335068e4af1d50a06e9294a40698",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicStatusLine.java",
+ "SPDXID": "SPDXRef-7b687791027769ee7e5791bc020b28db",
+ "FileChecksumSHA1": "5a5893ea5dc10959b978e928e0f14d49ac57f6d2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BasicTokenIterator.java",
+ "SPDXID": "SPDXRef-6e30fae1fe19913c61c6f5722c52d1bc",
+ "FileChecksumSHA1": "6482ffea3c6484bbb71a6690dd53a55b2bf578ef",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/BufferedHeader.java",
+ "SPDXID": "SPDXRef-9e50d6464665a5d508a241456876549b",
+ "FileChecksumSHA1": "9f34be4657c037f393ab1e97483cdcdd9e0595f6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderGroup.java",
+ "SPDXID": "SPDXRef-1644dbfe7eb5352958b0e72b33a2fde1",
+ "FileChecksumSHA1": "dc2da1cbdc3d57fd190b9aea755d4de5efe3b1c7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderValueFormatter.java",
+ "SPDXID": "SPDXRef-b1c71b427925261d7efc99284618cda4",
+ "FileChecksumSHA1": "04a0ca72a8cdba1652da3ebea664208f181bc29d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/HeaderValueParser.java",
+ "SPDXID": "SPDXRef-a551d9e621ebf38da0b601a39fb46737",
+ "FileChecksumSHA1": "f38659f0b25e537cd16485fce1154c3d0459c1e3",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/LineFormatter.java",
+ "SPDXID": "SPDXRef-0a8e40dd8a29f572c674ad2451fb9215",
+ "FileChecksumSHA1": "c3cf87e17dd359d38088d8460f35cda7a8138257",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/LineParser.java",
+ "SPDXID": "SPDXRef-c181fd1733db0dd9779a2702b789df66",
+ "FileChecksumSHA1": "db4f1946169f89317a6bfd7e44cceb4f84491cb0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/ParserCursor.java",
+ "SPDXID": "SPDXRef-c177c5fd5f2833dc89ff138b91f08dd9",
+ "FileChecksumSHA1": "63e7107771baa81115c9e88a8ebc5b0d98117f4b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/message/package.html",
+ "SPDXID": "SPDXRef-13acd443d88f10894e0425944e6d2c8b",
+ "FileChecksumSHA1": "2b0f5e66f409b5f9206672efea2e8cc1ee1a0f4f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/package.html",
+ "SPDXID": "SPDXRef-41389abb62b744d38a4562a1101fc66f",
+ "FileChecksumSHA1": "328c66b3236a7defc476222e61506f028f361bc4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/AbstractHttpParams.java",
+ "SPDXID": "SPDXRef-0a2272dbb478038e98b6dc4971c44e5a",
+ "FileChecksumSHA1": "0401305548fb392a2de0f99627cef7fee68cf6cb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/BasicHttpParams.java",
+ "SPDXID": "SPDXRef-ae65ee7b2c1275cbe70bb36f1728c29a",
+ "FileChecksumSHA1": "6c8c7474d6497cb9099e78cbf00b664b63d81c1d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/CoreConnectionPNames.java",
+ "SPDXID": "SPDXRef-bca8688a45313a452799e260692eb626",
+ "FileChecksumSHA1": "4fcf871dd397743bacc65231444ceb30270b90a8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/CoreProtocolPNames.java",
+ "SPDXID": "SPDXRef-435edfbade73eb68dc4784df3858f32e",
+ "FileChecksumSHA1": "004b8802e57c03ab1b5329524b6e89e7898eb7e7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/DefaultedHttpParams.java",
+ "SPDXID": "SPDXRef-7db1fafdaeb08e3e5ff455ccd8e8790d",
+ "FileChecksumSHA1": "22df83abee8830c832d4af4892b08bb6ae570fc5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpAbstractParamBean.java",
+ "SPDXID": "SPDXRef-0eb385d4c5edde073fbbd7dc4638efdd",
+ "FileChecksumSHA1": "cbeac10e6fa8cc1ab09bdbee3e9b0a34b0eda3a1",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpConnectionParamBean.java",
+ "SPDXID": "SPDXRef-b42225a6075507de599eeaa5b473aa88",
+ "FileChecksumSHA1": "82bf253bcd11121d5174b1cafa7fcbc1f83e5681",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpConnectionParams.java",
+ "SPDXID": "SPDXRef-8fd20b3f8b79967efe8d483eaad814e9",
+ "FileChecksumSHA1": "7dbff412260f193b78ee012d4cb60faf27650c33",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpParams.java",
+ "SPDXID": "SPDXRef-4cb17e8e8678971cc375b907ae92baa2",
+ "FileChecksumSHA1": "b120d3eb0d015196a05639f57fa255477ecc4e6f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpProtocolParamBean.java",
+ "SPDXID": "SPDXRef-ddf2ebad33866bb62478f75e1b3a30ec",
+ "FileChecksumSHA1": "1eb1027b36e512b3d26a9c7eae61cdcb88ceac0d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/HttpProtocolParams.java",
+ "SPDXID": "SPDXRef-ee997e5ac68b4f0137af8cb43c8a5ec3",
+ "FileChecksumSHA1": "388905a2839b997ceae198b0929fa716d36f27d4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/SyncBasicHttpParams.java",
+ "SPDXID": "SPDXRef-e2da50d95e7dbbf85b2a6f62be9e1073",
+ "FileChecksumSHA1": "abd359da40b7f4a818cddcdb84d4dbef5d89f6c8",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/params/package.html",
+ "SPDXID": "SPDXRef-7a87dfbfc101e139515f3d62dc218ab6",
+ "FileChecksumSHA1": "d9d41dc12a6ba536473f59b602648d028fc4d354",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/BasicHttpContext.java",
+ "SPDXID": "SPDXRef-69fb9c0ac39e95f721ab7c36c5d7820a",
+ "FileChecksumSHA1": "c4624809af7d770dd989d0eb639dada0fda7f769",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/BasicHttpProcessor.java",
+ "SPDXID": "SPDXRef-6bb816595bffbf0cd2db2e08c38f559c",
+ "FileChecksumSHA1": "0c19c07eb2071fe7e620461d28f3b71fbdbdaacb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/DefaultedHttpContext.java",
+ "SPDXID": "SPDXRef-c12e96afbac928228b42c845c0892e82",
+ "FileChecksumSHA1": "515dc3d534b188cfa81d040576f88d87fadeb0a7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ExecutionContext.java",
+ "SPDXID": "SPDXRef-4efba662fa1a3ed04cfed0fc05f70be5",
+ "FileChecksumSHA1": "6511c78611616b08e74f1629e882d868e72f9543",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HTTP.java",
+ "SPDXID": "SPDXRef-f5236f96dd876f99cc543dff4e3fae01",
+ "FileChecksumSHA1": "ef0615a0ab8fc87942ca79705524791bad5625f5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpContext.java",
+ "SPDXID": "SPDXRef-c589e7ba75b7984793afffe8f41a0749",
+ "FileChecksumSHA1": "12b772e88ff602bc87a8f9ed275c1b77858ce1a0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpDateGenerator.java",
+ "SPDXID": "SPDXRef-cbccbf8a3e9ae592a71516fbf4d2f6c6",
+ "FileChecksumSHA1": "a45cca3585a4fbb49a5857946926e8913a2ac24f",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpExpectationVerifier.java",
+ "SPDXID": "SPDXRef-84403f390e749689a1c403b216f5c69e",
+ "FileChecksumSHA1": "6616a01ccdf1b6d3868b086296181ff47416574a",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpProcessor.java",
+ "SPDXID": "SPDXRef-dce93e7b54f142eeca687c42ecec3d6a",
+ "FileChecksumSHA1": "4170b9a6ca01df2ca720d5d5a7147fd326aaed0c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestExecutor.java",
+ "SPDXID": "SPDXRef-69d3908f28e283c2e69366d0fb73ff28",
+ "FileChecksumSHA1": "0ac2362c432520beabb6a4f0f0adb71eea3efb48",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandler.java",
+ "SPDXID": "SPDXRef-e84d53fdef8f5b900ad1527484973dd8",
+ "FileChecksumSHA1": "54402e85c90ae80c183640cdb675f61e2a508d7d",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandlerRegistry.java",
+ "SPDXID": "SPDXRef-eff72e757556e176119a725c27cba3eb",
+ "FileChecksumSHA1": "788980988e1cefac802e1fb84b84530e13cb9d32",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestHandlerResolver.java",
+ "SPDXID": "SPDXRef-1e85e87d3f2f784e212b7305a9ef974d",
+ "FileChecksumSHA1": "e7a15d8c899727ffd0b878699000ea70128d4b9c",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpRequestInterceptorList.java",
+ "SPDXID": "SPDXRef-37c92da5e431c8d258cf3f07b186d79f",
+ "FileChecksumSHA1": "189594259d89575a67db918788e1a76cef75d1a6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpResponseInterceptorList.java",
+ "SPDXID": "SPDXRef-5d17ca8ca307ced9b5443186540d7df9",
+ "FileChecksumSHA1": "1e90c2b40bcd8adfecf16dd4cc5b67e6c7d7ee66",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/HttpService.java",
+ "SPDXID": "SPDXRef-8b0e638235420a4f9da44a65e40bf095",
+ "FileChecksumSHA1": "67ede2152d32557bf806a59bdf1386259099e7eb",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ImmutableHttpProcessor.java",
+ "SPDXID": "SPDXRef-02251af6e711d26d6b38e5a7ac858e36",
+ "FileChecksumSHA1": "1a2aa84cd3030c635537cf3d808c22904e5d14e5",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestConnControl.java",
+ "SPDXID": "SPDXRef-953001f6c2ce2647245ecb5ec099bc6b",
+ "FileChecksumSHA1": "9aedfb9e2cc05e9517762a751b10c89b9524b121",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestContent.java",
+ "SPDXID": "SPDXRef-1736c1c65185360ddc0e06fb67752510",
+ "FileChecksumSHA1": "a36a8fed96333c8515accb18b903832f57ce788b",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestDate.java",
+ "SPDXID": "SPDXRef-321386931fa1e40ec415de29a9a6b5ed",
+ "FileChecksumSHA1": "452da3305c92d468017d0ed99b3c804da6d41b66",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestExpectContinue.java",
+ "SPDXID": "SPDXRef-1a7122c250d2d03c4aea1b103dbeb6a9",
+ "FileChecksumSHA1": "6fde1da5af235ca29fe54107d5765a6d65450a43",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestTargetHost.java",
+ "SPDXID": "SPDXRef-320d291be4d9ac13df53c17e4e83a680",
+ "FileChecksumSHA1": "ee23fd878b23fa63ed4a0ec3eddb32cfedba5340",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/RequestUserAgent.java",
+ "SPDXID": "SPDXRef-75ebc0392ff08b727c3bacdbc26d1729",
+ "FileChecksumSHA1": "0ba2f64e37fcefbafd4f7a0f531e75e037bf59f4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseConnControl.java",
+ "SPDXID": "SPDXRef-49b2bd0e84ccbf903fadff5e2b1f7f74",
+ "FileChecksumSHA1": "7c73e05a6a06d46c02cf2dc19aaee81d554c2af2",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseContent.java",
+ "SPDXID": "SPDXRef-a6f2b006dc45f181e594773285295ff2",
+ "FileChecksumSHA1": "407855877268538c9ef0ba58d2687e6faf069fc7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseDate.java",
+ "SPDXID": "SPDXRef-bd8cd24a75dce126e4d963d029b7755f",
+ "FileChecksumSHA1": "eb6e0cb2d8e53fa55e1cc3a4b6b9875fda25ffb7",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/ResponseServer.java",
+ "SPDXID": "SPDXRef-480136507b116bdd250c389f0772a1d5",
+ "FileChecksumSHA1": "3c1b6ec6a9034204e5d52097aebec14692c69e36",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/SyncBasicHttpContext.java",
+ "SPDXID": "SPDXRef-7d6e7f9684324f102d033ad113680044",
+ "FileChecksumSHA1": "904b96563dd0e8e3de062ee1978b7b72eb9833f6",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/UriPatternMatcher.java",
+ "SPDXID": "SPDXRef-e264c27fb6a7ee0477186451600424d7",
+ "FileChecksumSHA1": "a96a7d37174a005f5ff4c61c09cb0e58e505c515",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/protocol/package.html",
+ "SPDXID": "SPDXRef-cc77244005fad730e41527fa5c47bfc4",
+ "FileChecksumSHA1": "31dc05a3967b44dac9831ce7005296fc39b4c098",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/ByteArrayBuffer.java",
+ "SPDXID": "SPDXRef-6cbe8608cf1cf1ca94ab0b11f4140c0e",
+ "FileChecksumSHA1": "1f43327077a86f45f27b9b8f81f534ac2c6247fc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/CharArrayBuffer.java",
+ "SPDXID": "SPDXRef-4b32b132710f2afed5f774d69408e042",
+ "FileChecksumSHA1": "b8a396d8e1b5eaebdfff7582615d0abc29ad10cc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/EncodingUtils.java",
+ "SPDXID": "SPDXRef-208b4a2d6917996da5a542770252567e",
+ "FileChecksumSHA1": "ebcb4d1a312503192ed1d40c1750eccf9b0496bc",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/EntityUtils.java",
+ "SPDXID": "SPDXRef-fd2c88a2350f366fd9924d0963033521",
+ "FileChecksumSHA1": "5f32e1f2fb8848b00854498e26fa52b83fd03cff",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/ExceptionUtils.java",
+ "SPDXID": "SPDXRef-e333ba689e15d92ec4d6018434352a42",
+ "FileChecksumSHA1": "2c4bc02be0d5e4ef35c6c2e0e06fa57f5f195113",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/LangUtils.java",
+ "SPDXID": "SPDXRef-4b9d6cdf424dc2a5dd89723f14f98021",
+ "FileChecksumSHA1": "ecfd92682e5e564c2193cb1fbf460f101716714e",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/VersionInfo.java",
+ "SPDXID": "SPDXRef-969346fb62387f62ec3a62393641d8c6",
+ "FileChecksumSHA1": "d9f180dd61eabf70a1b9cfed4fa74d6312ad16d0",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/util/package.html",
+ "SPDXID": "SPDXRef-868df6818a07eb99a7304733bda61757",
+ "FileChecksumSHA1": "6e7e6142aa8c0380a56c3b1d3298b7de49c2d3e4",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ },
+ {
+ "FileName": "org/apache/http/version.properties",
+ "SPDXID": "SPDXRef-8e1a286cac40e71108869ffcd10c5e86",
+ "FileChecksumSHA1": "0cfffd33e6ddaa9fb575bf1e57cddbc2d3254fff",
+ "LicenseConcluded": "NOASSERTION",
+ "FileCopyrightText": "NONE"
+ }
+ ],
+ "licenses": []
+ }
+ }
+ },
"scancode": {
- "30.3.0": {
+ "32.3.0": {
"_metadata": {
"type": "scancode",
"url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1",
- "fetchedAt": "2022-04-08T16:34:36.364Z",
+ "fetchedAt": "2024-05-13T14:15:20.805Z",
"links": {
"self": {
- "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:scancode:30.3.0",
+ "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:scancode:32.3.0",
"type": "resource"
},
"siblings": {
@@ -1441,59 +3981,207 @@
"type": "collection"
}
},
- "schemaVersion": "30.3.0",
- "toolVersion": "30.1.0",
+ "schemaVersion": "32.3.0",
+ "toolVersion": "32.1.0",
"contentType": "application/json",
"releaseDate": "2010-11-13T19:11:34.000Z",
- "processedAt": "2022-04-08T16:35:41.580Z"
+ "processedAt": "2024-05-13T14:16:13.637Z"
},
"content": {
"headers": [
{
"tool_name": "scancode-toolkit",
- "tool_version": "30.1.0",
+ "tool_version": "32.1.0",
"options": {
"input": [
- "/tmp/cd-uL4uDm"
+ "/tmp/cd-AQgYDu"
],
"--classify": true,
"--copyright": true,
"--email": true,
"--generated": true,
"--info": true,
- "--is-license-text": true,
- "--json-pp": "/tmp/cd-xabnUJ",
+ "--json-pp": "/tmp/cd-q1LGuL",
"--license": true,
"--license-clarity-score": true,
+ "--license-references": true,
"--license-text": true,
"--license-text-diagnostics": true,
"--package": true,
"--processes": "2",
"--strip-root": true,
"--summary": true,
- "--summary-key-files": true,
+ "--tallies": true,
+ "--tallies-key-files": true,
"--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.",
- "start_timestamp": "2022-04-08T163437.512396",
- "end_timestamp": "2022-04-08T163540.673801",
- "output_format_version": "1.0.0",
- "duration": 63.161415576934814,
+ "start_timestamp": "2024-05-13T141521.606847",
+ "end_timestamp": "2024-05-13T141612.986660",
+ "output_format_version": "3.1.0",
+ "duration": 51.379826068878174,
"message": null,
"errors": [],
+ "warnings": [],
"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.",
+ "system_environment": {
+ "operating_system": "linux",
+ "cpu_architecture": "64",
+ "platform": "Linux-6.5.0-1019-azure-x86_64-with-glibc2.31",
+ "platform_version": "#20~22.04.1-Ubuntu SMP Wed Apr 3 03:28:18 UTC 2024",
+ "python_version": "3.9.2 (default, Feb 28 2021, 17:03:44) \n[GCC 10.2.1 20210110]"
+ },
+ "spdx_license_list_version": "3.23",
"files_count": 177
}
}
],
"summary": {
- "license_expressions": [
+ "declared_license_expression": null,
+ "license_clarity_score": {
+ "score": 0,
+ "declared_license": false,
+ "identification_precision": false,
+ "has_license_text": false,
+ "declared_copyrights": false,
+ "conflicting_license_categories": false,
+ "ambiguous_compound_licensing": true
+ },
+ "declared_holder": "",
+ "primary_language": "Java",
+ "other_license_expressions": [
+ {
+ "value": "apache-2.0",
+ "count": 176
+ }
+ ],
+ "other_holders": [
+ {
+ "value": null,
+ "count": 176
+ },
+ {
+ "value": "The Apache Software Foundation",
+ "count": 1
+ }
+ ],
+ "other_languages": [
+ {
+ "value": "HTML",
+ "count": 10
+ }
+ ]
+ },
+ "packages": [],
+ "dependencies": [],
+ "license_detections": [
+ {
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa",
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "detection_count": 173,
+ "reference_matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ConnectionClosedException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ]
+ },
+ {
+ "identifier": "apache_2_0-1db4c831-8c17-6020-d929-512eb86e54ad",
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "detection_count": 2,
+ "reference_matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/NOTICE.txt",
+ "start_line": 4,
+ "end_line": 5,
+ "matcher": "2-aho",
+ "score": 95,
+ "matched_length": 14,
+ "match_coverage": 100,
+ "rule_relevance": 95,
+ "rule_identifier": "apache_no-version_1.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache_no-version_1.RULE",
+ "matched_text": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/).",
+ "matched_text_diagnostics": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/)."
+ }
+ ]
+ },
+ {
+ "identifier": "apache_2_0-9804422e-94ac-ad40-b53a-ee6f8ddb7a3b",
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "detection_count": 2,
+ "reference_matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/LICENSE.txt",
+ "start_line": 1,
+ "end_line": 176,
+ "matcher": "1-hash",
+ "score": 100,
+ "matched_length": 1410,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_93.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_93.RULE",
+ "matched_text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS",
+ "matched_text_diagnostics": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS"
+ }
+ ]
+ },
+ {
+ "identifier": "apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de",
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "detection_count": 1,
+ "reference_matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/version.properties",
+ "start_line": 2,
+ "end_line": 17,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 119,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_2.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_2.RULE",
+ "matched_text": "# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License.",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License."
+ }
+ ]
+ }
+ ],
+ "tallies": {
+ "detected_license_expression": [
{
"value": "apache-2.0",
"count": 176
+ },
+ {
+ "value": null,
+ "count": 1
}
],
"copyrights": [
@@ -1535,24 +4223,185 @@
"value": "HTML",
"count": 10
}
- ],
- "packages": []
+ ]
},
- "license_clarity_score": {
- "score": 15,
- "declared": false,
- "discovered": 0.01,
- "consistency": false,
- "spdx": false,
- "license_texts": true
- },
- "summary_of_key_files": {
- "license_expressions": [],
+ "tallies_of_key_files": {
+ "detected_license_expression": [],
"copyrights": [],
"holders": [],
"authors": [],
"programming_language": []
},
+ "license_references": [
+ {
+ "key": "apache-2.0",
+ "language": "en",
+ "short_name": "Apache 2.0",
+ "name": "Apache License 2.0",
+ "category": "Permissive",
+ "owner": "Apache Software Foundation",
+ "homepage_url": "http://www.apache.org/licenses/",
+ "notes": "Per SPDX.org, this version was released January 2004 This license is OSI\ncertified\n",
+ "is_builtin": true,
+ "is_exception": false,
+ "is_unknown": false,
+ "is_generic": false,
+ "spdx_license_key": "Apache-2.0",
+ "other_spdx_license_keys": [
+ "LicenseRef-Apache",
+ "LicenseRef-Apache-2.0"
+ ],
+ "osi_license_key": "Apache-2.0",
+ "text_urls": [
+ "http://www.apache.org/licenses/LICENSE-2.0"
+ ],
+ "osi_url": "http://opensource.org/licenses/apache2.0.php",
+ "faq_url": "http://www.apache.org/foundation/licence-FAQ.html",
+ "other_urls": [
+ "http://www.opensource.org/licenses/Apache-2.0",
+ "https://opensource.org/licenses/Apache-2.0",
+ "https://www.apache.org/licenses/LICENSE-2.0"
+ ],
+ "key_aliases": [],
+ "minimum_coverage": 0,
+ "standard_notice": null,
+ "ignorable_copyrights": [],
+ "ignorable_holders": [],
+ "ignorable_authors": [],
+ "ignorable_urls": [
+ "http://www.apache.org/licenses/",
+ "http://www.apache.org/licenses/LICENSE-2.0"
+ ],
+ "ignorable_emails": [],
+ "text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n \n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n \n 1. Definitions.\n \n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n \n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n \n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n \n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n \n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n \n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n \n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n \n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n \n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n \n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n \n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n \n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n \n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n \n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n \n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n \n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n \n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n \n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n \n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n \n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n \n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n \n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n \n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n \n END OF TERMS AND CONDITIONS\n \n APPENDIX: How to apply the Apache License to your work.\n \n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n \n Copyright [yyyy] [name of copyright owner]\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.",
+ "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE",
+ "licensedb_url": "https://scancode-licensedb.aboutcode.org/apache-2.0",
+ "spdx_url": "https://spdx.org/licenses/Apache-2.0"
+ }
+ ],
+ "license_rule_references": [
+ {
+ "license_expression": "apache-2.0",
+ "identifier": "apache-2.0_2.RULE",
+ "language": "en",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_2.RULE",
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "is_license_intro": false,
+ "is_license_clue": false,
+ "is_continuous": false,
+ "is_builtin": true,
+ "is_from_license": false,
+ "is_synthetic": false,
+ "length": 119,
+ "relevance": 100,
+ "minimum_coverage": 80,
+ "referenced_filenames": [
+ "NOTICE"
+ ],
+ "notes": null,
+ "ignorable_copyrights": [],
+ "ignorable_holders": [],
+ "ignorable_authors": [],
+ "ignorable_urls": [
+ "http://www.apache.org/licenses/LICENSE-2.0"
+ ],
+ "ignorable_emails": [],
+ "text": "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
+ },
+ {
+ "license_expression": "apache-2.0",
+ "identifier": "apache-2.0_25_notice.RULE",
+ "language": "en",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "is_license_text": false,
+ "is_license_notice": true,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "is_license_intro": false,
+ "is_license_clue": false,
+ "is_continuous": false,
+ "is_builtin": true,
+ "is_from_license": false,
+ "is_synthetic": false,
+ "length": 150,
+ "relevance": 100,
+ "minimum_coverage": 90,
+ "referenced_filenames": [],
+ "notes": null,
+ "ignorable_copyrights": [],
+ "ignorable_holders": [],
+ "ignorable_authors": [],
+ "ignorable_urls": [
+ "http://www.apache.org/",
+ "http://www.apache.org/licenses/LICENSE-2.0"
+ ],
+ "ignorable_emails": [],
+ "text": "* Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ },
+ {
+ "license_expression": "apache-2.0",
+ "identifier": "apache-2.0_93.RULE",
+ "language": "en",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_93.RULE",
+ "is_license_text": true,
+ "is_license_notice": false,
+ "is_license_reference": false,
+ "is_license_tag": false,
+ "is_license_intro": false,
+ "is_license_clue": false,
+ "is_continuous": false,
+ "is_builtin": true,
+ "is_from_license": false,
+ "is_synthetic": false,
+ "length": 1410,
+ "relevance": 100,
+ "minimum_coverage": 0,
+ "referenced_filenames": [],
+ "notes": null,
+ "ignorable_copyrights": [],
+ "ignorable_holders": [],
+ "ignorable_authors": [],
+ "ignorable_urls": [
+ "http://www.apache.org/licenses/"
+ ],
+ "ignorable_emails": [],
+ "text": "Apache License \n\nVersion 2.0, January 2004 \nhttp://www.apache.org/licenses/ \n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION \n\n1. Definitions.\n\"License\" shall mean the terms and conditions for use, reproduction,\nand distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the\ncopyright owner that is granting the License. \n\n\"Legal Entity\" shall mean the union of the acting entity and all other\nentities that control, are controlled by, or are under common control\nwith that entity. For the purposes of this definition, \"control\" means\n(i) the power, direct or indirect, to cause the direction or management\nof such entity, whether by contract or otherwise, or (ii) ownership\nof fifty percent (50%) or more of the outstanding shares, or (iii)\nbeneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising\npermissions granted by this License. \n\n\"Source\" form shall mean the preferred form for making modifications,\nincluding but not limited to software source code, documentation source,\nand configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation\nor translation of a Source form, including but not limited to compiled\nobject code, generated documentation, and conversions to other media\ntypes. \n\n\"Work\" shall mean the work of authorship, whether in Source or\nObject form, made available under the License, as indicated by a copyright\nnotice that is included in or attached to the work (an example is provided\nin the Appendix below). \n\n\"Derivative Works\" shall mean any work, whether in Source or Object form,\nthat is based on (or derived from) the Work and for which the editorial\nrevisions, annotations, elaborations, or other modifications represent,\nas a whole, an original work of authorship. For the purposes of this\nLicense, Derivative Works shall not include works that remain separable\nfrom, or merely link (or bind by name) to the interfaces of, the Work\nand Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the\noriginal version of the Work and any modifications or additions to\nthat Work or Derivative Works thereof, that is intentionally submitted\nto Licensor for inclusion in the Work by the copyright owner or by an\nindividual or Legal Entity authorized to submit on behalf of the copyright\nowner. For the purposes of this definition, \"submitted\" means any form of\nelectronic, verbal, or written communication sent to the Licensor or its\nrepresentatives, including but not limited to communication on electronic\nmailing lists, source code control systems, and issue tracking systems\nthat are managed by, or on behalf of, the Licensor for the purpose of\ndiscussing and improving the Work, but excluding communication that is\nconspicuously marked or otherwise designated in writing by the copyright\nowner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity\non behalf of whom a Contribution has been received by Licensor and\nsubsequently incorporated within the Work.\n\n2. Grant of Copyright License.\nSubject to the terms and conditions of this License, each Contributor\nhereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\nroyalty-free, irrevocable copyright license to reproduce, prepare\nDerivative Works of, publicly display, publicly perform, sublicense, and\ndistribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License.\nSubject to the terms and conditions of this License, each Contributor\nhereby grants to You a perpetual, worldwide, non-exclusive, no-charge,\nroyalty- free, irrevocable (except as stated in this section) patent\nlicense to make, have made, use, offer to sell, sell, import, and\notherwise transfer the Work, where such license applies only to those\npatent claims licensable by such Contributor that are necessarily\ninfringed by their Contribution(s) alone or by combination of\ntheir Contribution(s) with the Work to which such Contribution(s)\nwas submitted. If You institute patent litigation against any entity\n(including a cross-claim or counterclaim in a lawsuit) alleging that the\nWork or a Contribution incorporated within the Work constitutes direct\nor contributory patent infringement, then any patent licenses granted\nto You under this License for that Work shall terminate as of the date\nsuch litigation is filed.\n\n4. Redistribution.\nYou may reproduce and distribute copies of the Work or Derivative Works\nthereof in any medium, with or without modifications, and in Source or\nObject form, provided that You meet the following conditions:\n\n a. You must give any other recipients of the Work or Derivative Works\n a copy of this License; and\n\n b. You must cause any modified files to carry prominent notices stating\n that You changed the files; and\n\n c. You must retain, in the Source form of any Derivative Works that\n You distribute, all copyright, patent, trademark, and attribution\n notices from the Source form of the Work, excluding those notices\n that do not pertain to any part of the Derivative Works; and\n\n d. If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one of\n the following places: within a NOTICE text file distributed as part\n of the Derivative Works; within the Source form or documentation,\n if provided along with the Derivative Works; or, within a display\n generated by the Derivative Works, if and wherever such third-party\n notices normally appear. The contents of the NOTICE file are for\n informational purposes only and do not modify the License. You\n may add Your own attribution notices within Derivative Works that\n You distribute, alongside or as an addendum to the NOTICE text\n from the Work, provided that such additional attribution notices\n cannot be construed as modifying the License. You may add Your own\n copyright statement to Your modifications and may provide additional\n or different license terms and conditions for use, reproduction, or\n distribution of Your modifications, or for any such Derivative Works\n as a whole, provided Your use, reproduction, and distribution of the\n Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions.\nUnless You explicitly state otherwise, any Contribution intentionally\nsubmitted for inclusion in the Work by You to the Licensor shall be\nunder the terms and conditions of this License, without any additional\nterms or conditions. Notwithstanding the above, nothing herein shall\nsupersede or modify the terms of any separate license agreement you may\nhave executed with Licensor regarding such Contributions.\n\n6. Trademarks.\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty.\nUnless required by applicable law or agreed to in writing, Licensor\nprovides the Work (and each Contributor provides its Contributions) on\nan \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\nexpress or implied, including, without limitation, any warranties or\nconditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR\nA PARTICULAR PURPOSE. You are solely responsible for determining the\nappropriateness of using or redistributing the Work and assume any risks\nassociated with Your exercise of permissions under this License.\n\n8. Limitation of Liability.\nIn no event and under no legal theory, whether in tort (including\nnegligence), contract, or otherwise, unless required by applicable law\n(such as deliberate and grossly negligent acts) or agreed to in writing,\nshall any Contributor be liable to You for damages, including any direct,\nindirect, special, incidental, or consequential damages of any character\narising as a result of this License or out of the use or inability to\nuse the Work (including but not limited to damages for loss of goodwill,\nwork stoppage, computer failure or malfunction, or any and all other\ncommercial damages or losses), even if such Contributor has been advised\nof the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability.\nWhile redistributing the Work or Derivative Works thereof, You may\nchoose to offer, and charge a fee for, acceptance of support, warranty,\nindemnity, or other liability obligations and/or rights consistent with\nthis License. However, in accepting such obligations, You may act only\non Your own behalf and on Your sole responsibility, not on behalf of\nany other Contributor, and only if You agree to indemnify, defend, and\nhold each Contributor harmless for any liability incurred by, or claims\nasserted against, such Contributor by reason of your accepting any such\nwarranty or additional liability.\n\nEND OF TERMS AND CONDITIONS"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "identifier": "apache_no-version_1.RULE",
+ "language": "en",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache_no-version_1.RULE",
+ "is_license_text": false,
+ "is_license_notice": false,
+ "is_license_reference": true,
+ "is_license_tag": false,
+ "is_license_intro": false,
+ "is_license_clue": false,
+ "is_continuous": false,
+ "is_builtin": true,
+ "is_from_license": false,
+ "is_synthetic": false,
+ "length": 14,
+ "relevance": 95,
+ "minimum_coverage": 50,
+ "referenced_filenames": [],
+ "notes": "the actual version of the license is not provided but the most common one is the Apache 2.0",
+ "ignorable_copyrights": [],
+ "ignorable_holders": [],
+ "ignorable_authors": [
+ "the Apache Software Foundation (http://www.apache.org/)"
+ ],
+ "ignorable_urls": [
+ "http://www.apache.org/"
+ ],
+ "ignorable_emails": [],
+ "text": "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)"
+ }
+ ],
"files": [
{
"path": "META-INF",
@@ -1574,22 +4423,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
- "percentage_of_license_text": 0,
- "copyrights": [],
- "holders": [],
- "authors": [],
- "packages": [],
- "emails": [],
- "urls": [],
+ "package_data": [],
+ "for_packages": [],
"is_legal": false,
"is_manifest": false,
"is_readme": false,
"is_top_level": true,
"is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
+ "percentage_of_license_text": 0,
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "emails": [],
+ "urls": [],
"is_generated": false,
- "is_license_text": false,
"files_count": 3,
"dirs_count": 0,
"size_count": 10484,
@@ -1615,55 +4466,45 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 1,
- "end_line": 176,
- "matched_rule": {
- "identifier": "apache-2.0_93.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": true,
- "is_license_notice": false,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "1-hash",
- "rule_length": 1407,
- "matched_length": 1407,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS"
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": true,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/LICENSE.txt",
+ "start_line": 1,
+ "end_line": 176,
+ "matcher": "1-hash",
+ "score": 100,
+ "matched_length": 1410,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_93.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_93.RULE",
+ "matched_text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS",
+ "matched_text_diagnostics": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS"
+ }
+ ],
+ "identifier": "apache_2_0-9804422e-94ac-ad40-b53a-ee6f8ddb7a3b"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 100,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -1672,13 +4513,7 @@
"end_line": 3
}
],
- "is_legal": true,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": true,
- "is_license_text": true,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -1704,22 +4539,114 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [
+ {
+ "type": "jar",
+ "namespace": null,
+ "name": null,
+ "version": null,
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": null,
+ "description": "",
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0",
+ "declared_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/LICENSE.txt",
+ "start_line": 1,
+ "end_line": 176,
+ "matcher": "1-hash",
+ "score": 100,
+ "matched_length": 1410,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_93.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_93.RULE",
+ "matched_text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS",
+ "matched_text_diagnostics": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS"
+ }
+ ],
+ "identifier": "apache_2_0-9804422e-94ac-ad40-b53a-ee6f8ddb7a3b"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/NOTICE.txt",
+ "start_line": 4,
+ "end_line": 5,
+ "matcher": "2-aho",
+ "score": 95,
+ "matched_length": 14,
+ "match_coverage": 100,
+ "rule_relevance": 95,
+ "rule_identifier": "apache_no-version_1.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache_no-version_1.RULE",
+ "matched_text": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/).",
+ "matched_text_diagnostics": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/)."
+ }
+ ],
+ "identifier": "apache_2_0-1db4c831-8c17-6020-d929-512eb86e54ad"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": null,
+ "notice_text": null,
+ "source_packages": [],
+ "file_references": [],
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": null,
+ "repository_download_url": null,
+ "api_data_url": null,
+ "datasource_id": "java_jar_manifest",
+ "purl": null
+ }
+ ],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": true,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -1745,73 +4672,63 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 95,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 4,
- "end_line": 5,
- "matched_rule": {
- "identifier": "apache_no-version_1.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": false,
- "is_license_reference": true,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 14,
- "matched_length": 14,
- "match_coverage": 100,
- "rule_relevance": 95
- },
- "matched_text": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/)."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": true,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/META-INF/NOTICE.txt",
+ "start_line": 4,
+ "end_line": 5,
+ "matcher": "2-aho",
+ "score": 95,
+ "matched_length": 14,
+ "match_coverage": 100,
+ "rule_relevance": 95,
+ "rule_identifier": "apache_no-version_1.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache_no-version_1.RULE",
+ "matched_text": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/).",
+ "matched_text_diagnostics": "This product includes software developed by\r\nThe Apache Software Foundation (http://www.apache.org/)."
+ }
+ ],
+ "identifier": "apache_2_0-1db4c831-8c17-6020-d929-512eb86e54ad"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 58.33,
"copyrights": [
{
- "value": "Copyright 2005-2010 The Apache Software Foundation",
+ "copyright": "Copyright 2005-2010 The Apache Software Foundation",
"start_line": 2,
"end_line": 2
}
],
"holders": [
{
- "value": "The Apache Software Foundation",
+ "holder": "The Apache Software Foundation",
"start_line": 2,
"end_line": 2
}
],
"authors": [
{
- "value": "The Apache Software Foundation (http://www.apache.org/)",
+ "author": "The Apache Software Foundation (http://www.apache.org/)",
"start_line": 4,
"end_line": 5
}
],
- "packages": [],
"emails": [],
"urls": [
{
@@ -1820,13 +4737,7 @@
"end_line": 5
}
],
- "is_legal": true,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -1852,22 +4763,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": true,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 174,
"dirs_count": 11,
"size_count": 771044,
@@ -1893,22 +4806,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 174,
"dirs_count": 10,
"size_count": 771044,
@@ -1934,22 +4849,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 174,
"dirs_count": 9,
"size_count": 771044,
@@ -1975,55 +4892,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ConnectionClosedException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 75,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2037,13 +4944,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2069,55 +4970,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ConnectionReuseStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 40.32,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2131,13 +5022,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2163,55 +5048,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/FormattedHeader.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.15,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2225,13 +5100,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2257,55 +5126,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/Header.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 57.47,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2319,13 +5178,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2351,55 +5204,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HeaderElement.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 40.43,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2413,13 +5256,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2445,55 +5282,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HeaderElementIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 65.5,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2507,13 +5334,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2539,55 +5360,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HeaderIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 66.67,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2601,13 +5412,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2631,57 +5436,47 @@
"is_text": true,
"is_archive": false,
"is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpClientConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 31.51,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2695,13 +5490,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2727,55 +5516,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 33.19,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 33.11,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2789,13 +5568,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2821,55 +5594,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpConnectionMetrics.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.15,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2883,13 +5646,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -2915,55 +5672,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 14.94,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 14.91,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -2977,13 +5724,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": true,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3009,55 +5750,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 4,
- "end_line": 25,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpEntityEnclosingRequest.java",
+ "start_line": 4,
+ "end_line": 25,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.98,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3071,13 +5802,7 @@
"end_line": 25
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3103,55 +5828,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.97,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3165,13 +5880,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3197,55 +5906,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpHeaders.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.32,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3259,13 +5958,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3291,55 +5984,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpHost.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 21.37,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3353,13 +6036,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3385,55 +6062,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpInetConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 82.42,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3447,13 +6114,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3479,55 +6140,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpMessage.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 17.34,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3541,13 +6192,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3573,55 +6218,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpRequest.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 68.18,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3635,13 +6270,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3667,55 +6296,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpRequestFactory.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 83.33,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3726,16 +6345,10 @@
{
"url": "http://www.apache.org/",
"start_line": 24,
- "end_line": 24
- }
- ],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
+ "end_line": 24
+ }
+ ],
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3761,55 +6374,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpRequestInterceptor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 43.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3823,13 +6426,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3855,55 +6452,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 23.81,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpResponse.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 23.77,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -3917,13 +6504,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -3949,55 +6530,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpResponseFactory.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 51.72,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4011,13 +6582,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4043,55 +6608,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpResponseInterceptor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 43.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4105,13 +6660,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4137,55 +6686,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpServerConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 38.17,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4199,13 +6738,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4231,55 +6764,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpStatus.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.23,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4293,13 +6816,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4325,55 +6842,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/HttpVersion.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 37.59,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4387,13 +6894,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4419,55 +6920,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/MalformedChunkCodingException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 73.89,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4481,13 +6972,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4513,55 +6998,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/MethodNotSupportedException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.48,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4575,13 +7050,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4607,55 +7076,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/NameValuePair.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 81.52,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4669,13 +7128,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4701,55 +7154,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/NoHttpResponseException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 74.63,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4763,13 +7206,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4795,55 +7232,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 63.83,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 63.56,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4857,13 +7284,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4889,55 +7310,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ParseException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.48,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -4951,13 +7362,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -4983,55 +7388,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ProtocolException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 56.18,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5045,13 +7440,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5077,55 +7466,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ProtocolVersion.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 14.78,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5139,13 +7518,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5171,55 +7544,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/ReasonPhraseCatalog.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 65.22,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5233,13 +7596,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5265,55 +7622,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/RequestLine.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 69.77,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5327,13 +7674,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5359,55 +7700,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/StatusLine.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 63.83,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5421,13 +7752,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5453,55 +7778,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/TokenIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.98,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5515,13 +7830,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5547,55 +7856,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/TruncatedChunkException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 77.72,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5609,13 +7908,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5641,55 +7934,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/UnsupportedHttpVersionException.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 71.43,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5703,13 +7986,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5735,57 +8012,45 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 2,
- "end_line": 17,
- "matched_rule": {
- "identifier": "apache-2.0_2.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [
- "NOTICE"
- ],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 119,
- "matched_length": 119,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/version.properties",
+ "start_line": 2,
+ "end_line": 17,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 119,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_2.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_2.RULE",
+ "matched_text": "# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License.",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License."
+ }
+ ],
+ "identifier": "apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 88.15,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5794,13 +8059,7 @@
"end_line": 10
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5826,22 +8085,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 13,
"dirs_count": 0,
"size_count": 40900,
@@ -5865,57 +8126,47 @@
"is_text": true,
"is_archive": false,
"is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/AbstractHttpEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 25.95,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -5929,13 +8180,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -5961,55 +8206,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/BasicHttpEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 33.56,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6023,13 +8258,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6055,55 +8284,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/BufferedHttpEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 37.59,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6117,13 +8336,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6149,55 +8362,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/ByteArrayEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 52.08,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6211,13 +8414,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6243,55 +8440,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/ContentLengthStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 56.6,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6305,13 +8492,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6337,55 +8518,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/ContentProducer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 77.72,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6399,13 +8570,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6431,55 +8596,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/EntityTemplate.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 57.47,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6493,13 +8648,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6525,55 +8674,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/FileEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 45.18,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6587,13 +8726,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6619,55 +8752,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/HttpEntityWrapper.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 42.49,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6681,13 +8804,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6713,55 +8830,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/InputStreamEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 37.88,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6775,13 +8882,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6807,55 +8908,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.56,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6869,13 +8960,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6901,55 +8986,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/SerializableEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 37.59,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -6959,17 +9034,11 @@
},
{
"url": "http://www.apache.org/",
- "start_line": 24,
- "end_line": 24
- }
- ],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
+ "start_line": 24,
+ "end_line": 24
+ }
+ ],
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -6995,55 +9064,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 43.1,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/entity/StringEntity.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 42.25,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7057,13 +9116,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7089,22 +9142,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 36,
"dirs_count": 2,
"size_count": 191657,
@@ -7130,55 +9185,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/AbstractHttpClientConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.43,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7192,13 +9237,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7224,55 +9263,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/AbstractHttpServerConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.75,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7286,13 +9315,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7318,55 +9341,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 16.78,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/DefaultConnectionReuseStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 16.76,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7380,13 +9393,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7412,55 +9419,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/DefaultHttpClientConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 44.25,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7474,13 +9471,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7506,55 +9497,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/DefaultHttpRequestFactory.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.37,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7568,13 +9549,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7600,55 +9575,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/DefaultHttpResponseFactory.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 35.05,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7662,13 +9627,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7694,55 +9653,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/DefaultHttpServerConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 44.25,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7756,13 +9705,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7788,55 +9731,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/EnglishReasonPhraseCatalog.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 18.66,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7850,13 +9783,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7882,55 +9809,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/HttpConnectionMetricsImpl.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 33.56,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -7944,13 +9861,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -7968,63 +9879,53 @@
"md5": "9d25fc4cb9e1e5fb61b18b3cf22e7c46",
"sha256": "91aa58c3469e9c207510c9b18a9390f002e18fa6888cd3bb5b1190cbb3bd7289",
"mime_type": "text/x-java",
- "file_type": "Java source, ASCII text",
- "programming_language": "Java",
- "is_binary": false,
- "is_text": true,
- "is_archive": false,
- "is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "file_type": "Java source, ASCII text",
+ "programming_language": "Java",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/NoConnectionReuseStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 66.37,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8038,13 +9939,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8070,55 +9965,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 90.36,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8132,13 +10017,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8164,55 +10043,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 17.06,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/SocketHttpClientConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 17.03,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8226,13 +10095,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8258,55 +10121,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 16.18,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/SocketHttpServerConnection.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 16.15,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8320,13 +10173,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8352,22 +10199,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 5,
"dirs_count": 0,
"size_count": 21120,
@@ -8393,55 +10242,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/entity/EntityDeserializer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 24.96,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8455,13 +10294,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8487,55 +10320,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/entity/EntitySerializer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 27.88,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8549,13 +10372,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8581,55 +10398,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/entity/LaxContentLengthStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 26.83,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8643,13 +10450,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8675,55 +10476,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/entity/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 83.33,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8737,13 +10528,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8769,55 +10554,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 40.11,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/entity/StrictContentLengthStrategy.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 39.37,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8831,13 +10606,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8863,22 +10632,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 18,
"dirs_count": 0,
"size_count": 90996,
@@ -8904,55 +10675,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/AbstractMessageParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 12.83,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -8966,13 +10727,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -8990,63 +10745,53 @@
"md5": "2221d69bfc1e87faedc516e669c918b7",
"sha256": "dc9e25d003c2218db0e855a9ddd4616ab1e3219108f09912c48475a45e05ef40",
"mime_type": "text/x-java",
- "file_type": "Java source, ASCII text",
- "programming_language": "Java",
- "is_binary": false,
- "is_text": true,
- "is_archive": false,
- "is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "file_type": "Java source, ASCII text",
+ "programming_language": "Java",
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/AbstractMessageWriter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 36.59,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9060,13 +10805,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9092,55 +10831,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 11.1,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/AbstractSessionInputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 11.04,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9154,13 +10883,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9186,55 +10909,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 17.94,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/AbstractSessionOutputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 17.69,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9248,13 +10961,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9280,55 +10987,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/ChunkedInputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.38,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9342,13 +11039,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9374,55 +11065,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/ChunkedOutputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 21.52,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9436,13 +11117,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9468,55 +11143,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/ContentLengthInputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 17.26,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9530,13 +11195,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9562,55 +11221,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/ContentLengthOutputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 29.47,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9624,13 +11273,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9656,55 +11299,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 37.5,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/HttpRequestParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 37.41,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9718,13 +11351,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9750,55 +11377,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/HttpRequestWriter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 61.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9812,13 +11429,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9844,55 +11455,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 36.5,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/HttpResponseParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 36.41,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -9906,13 +11507,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -9938,55 +11533,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/HttpResponseWriter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 61.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10000,13 +11585,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10026,61 +11605,51 @@
"mime_type": "text/x-java",
"file_type": "Java source, ASCII text",
"programming_language": "Java",
- "is_binary": false,
- "is_text": true,
- "is_archive": false,
- "is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/HttpTransportMetricsImpl.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 71.77,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10094,13 +11663,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10126,55 +11689,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/IdentityInputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 41.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10188,13 +11741,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10220,55 +11767,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/IdentityOutputStream.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.68,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10282,13 +11819,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10314,55 +11845,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 74.26,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10376,13 +11897,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10408,55 +11923,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/SocketInputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 32.12,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10470,13 +11975,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10502,55 +12001,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/impl/io/SocketOutputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 48.23,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10564,13 +12053,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10596,22 +12079,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 8,
"dirs_count": 0,
"size_count": 20210,
@@ -10637,55 +12122,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/BufferInfo.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 75.76,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10699,13 +12174,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10731,55 +12200,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/EofSensor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 90.91,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10793,13 +12252,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10825,55 +12278,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/HttpMessageParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 66.96,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10887,13 +12330,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -10919,55 +12356,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/HttpMessageWriter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 66.67,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -10981,13 +12408,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11013,55 +12434,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/HttpTransportMetrics.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 80.21,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11075,13 +12486,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11106,56 +12511,46 @@
"is_archive": false,
"is_media": false,
"is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 85.23,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11169,13 +12564,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11201,55 +12590,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/SessionInputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 17.1,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11263,13 +12642,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11295,55 +12668,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 27.68,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/io/SessionOutputBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 27.57,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11357,13 +12720,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11389,22 +12746,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 25,
"dirs_count": 0,
"size_count": 161179,
@@ -11430,55 +12789,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/AbstractHttpMessage.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 28.3,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11492,13 +12841,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11524,55 +12867,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 48.54,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeader.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 48.39,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11586,13 +12919,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11618,55 +12945,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeaderElement.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 27.78,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11680,13 +12997,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11712,55 +13023,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeaderElementIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 30.36,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11774,13 +13075,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11806,55 +13101,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeaderIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 26.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11868,13 +13153,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11900,55 +13179,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeaderValueFormatter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 11.22,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -11962,13 +13231,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -11994,55 +13257,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHeaderValueParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 12.39,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12056,13 +13309,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12088,55 +13335,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHttpEntityEnclosingRequest.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.76,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12150,13 +13387,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12180,57 +13411,47 @@
"is_text": true,
"is_archive": false,
"is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHttpRequest.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 28.41,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12244,13 +13465,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12276,55 +13491,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicHttpResponse.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 21.07,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12338,13 +13543,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12370,55 +13569,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicLineFormatter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.85,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12432,13 +13621,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12464,55 +13647,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 9.59,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicLineParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 9.57,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12526,13 +13699,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12558,55 +13725,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicListHeaderIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 24.31,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12620,13 +13777,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12652,55 +13803,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicNameValuePair.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.89,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12714,13 +13855,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12746,55 +13881,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicRequestLine.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 50,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12808,13 +13933,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12840,55 +13959,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicStatusLine.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 42.25,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12902,13 +14011,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -12934,55 +14037,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BasicTokenIterator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 9.39,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -12996,13 +14089,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13028,55 +14115,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 35.97,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/BufferedHeader.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 35.71,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13090,13 +14167,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13122,55 +14193,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 14.49,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/HeaderGroup.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 14.46,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13184,13 +14245,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13216,55 +14271,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 24.75,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/HeaderValueFormatter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 24.71,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13277,14 +14322,8 @@
"start_line": 24,
"end_line": 24
}
- ],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
+ ],
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13310,55 +14349,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/HeaderValueParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 25.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13372,13 +14401,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13404,55 +14427,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/LineFormatter.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 23.11,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13466,13 +14479,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13498,55 +14505,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/LineParser.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 24.12,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13560,13 +14557,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13592,55 +14583,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 78.12,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13654,13 +14635,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13686,55 +14661,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/message/ParserCursor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 44.25,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13748,13 +14713,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13780,22 +14739,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 13,
"dirs_count": 0,
"size_count": 54224,
@@ -13821,55 +14782,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/AbstractHttpParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 41.67,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13883,13 +14834,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -13915,55 +14860,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/BasicHttpParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 26.79,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -13977,13 +14912,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14009,55 +14938,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 19.97,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/CoreConnectionPNames.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 19.89,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14071,13 +14990,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14103,55 +15016,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 29.59,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/CoreProtocolPNames.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 29.53,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14165,13 +15068,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14197,55 +15094,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/DefaultedHttpParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 38.46,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14259,13 +15146,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14291,55 +15172,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpAbstractParamBean.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 81.08,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14349,17 +15220,11 @@
},
{
"url": "http://www.apache.org/",
- "start_line": 24,
- "end_line": 24
- }
- ],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
+ "start_line": 24,
+ "end_line": 24
+ }
+ ],
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14385,55 +15250,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpConnectionParamBean.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14447,13 +15302,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14479,55 +15328,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 17.56,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpConnectionParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 17.52,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14541,13 +15380,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14573,55 +15406,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 18.82,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14635,13 +15458,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14667,55 +15484,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpProtocolParamBean.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 60.73,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14729,13 +15536,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14761,55 +15562,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/HttpProtocolParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 20.72,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14823,13 +15614,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14855,55 +15640,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 88.24,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -14917,13 +15692,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -14949,55 +15718,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/params/SyncBasicHttpParams.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 56.39,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15011,13 +15770,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15043,22 +15796,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 30,
"dirs_count": 0,
"size_count": 117337,
@@ -15084,55 +15839,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/BasicHttpContext.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 47.77,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15146,13 +15891,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15178,55 +15917,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/BasicHttpProcessor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 19.71,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15240,13 +15969,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15272,55 +15995,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/DefaultedHttpContext.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 50.68,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15334,13 +16047,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15366,55 +16073,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ExecutionContext.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 47.02,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15428,13 +16125,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15460,55 +16151,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HTTP.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 32.4,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15522,13 +16203,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15554,55 +16229,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpContext.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 43.6,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15616,13 +16281,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15648,55 +16307,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpDateGenerator.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 51.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15710,13 +16359,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15742,55 +16385,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 36.5,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpExpectationVerifier.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 36.32,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15804,13 +16437,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15836,55 +16463,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpProcessor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 51.19,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15898,13 +16515,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -15930,55 +16541,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpRequestExecutor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 11.19,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -15992,13 +16593,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16024,55 +16619,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpRequestHandler.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 49.5,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16086,13 +16671,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16118,55 +16697,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpRequestHandlerRegistry.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 40.11,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16180,13 +16749,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16212,55 +16775,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpRequestHandlerResolver.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 67.26,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16274,13 +16827,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16306,55 +16853,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpRequestInterceptorList.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.79,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16368,13 +16905,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16400,55 +16931,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpResponseInterceptorList.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.79,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16462,13 +16983,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16491,58 +17006,48 @@
"is_binary": false,
"is_text": true,
"is_archive": false,
- "is_media": false,
- "is_source": true,
- "is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 11.01,
+ "is_media": false,
+ "is_source": true,
+ "is_script": false,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/HttpService.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 11,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16556,13 +17061,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16588,55 +17087,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ImmutableHttpProcessor.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 36.23,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16650,13 +17139,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16682,55 +17165,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 82.87,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16744,13 +17217,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16776,55 +17243,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestConnControl.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 54.35,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16838,13 +17295,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16870,55 +17321,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestContent.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 35.71,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -16932,13 +17373,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -16964,55 +17399,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestDate.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 57.03,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17026,13 +17451,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17058,55 +17477,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestExpectContinue.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 45.45,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17120,13 +17529,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17152,55 +17555,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestTargetHost.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 39.27,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17214,13 +17607,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17246,55 +17633,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/RequestUserAgent.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 54.95,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17308,13 +17685,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17340,55 +17711,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ResponseConnControl.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 34.88,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17402,13 +17763,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17434,55 +17789,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ResponseContent.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 35.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17496,13 +17841,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17528,55 +17867,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ResponseDate.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 55.76,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17587,16 +17916,10 @@
{
"url": "http://www.apache.org/",
"start_line": 24,
- "end_line": 24
- }
- ],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
+ "end_line": 24
+ }
+ ],
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17622,55 +17945,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 55.15,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/ResponseServer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 54.55,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17684,13 +17997,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17716,55 +18023,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/SyncBasicHttpContext.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 70.75,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17778,13 +18075,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17810,55 +18101,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/protocol/UriPatternMatcher.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 26.18,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -17872,13 +18153,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -17904,22 +18179,24 @@
"is_media": false,
"is_source": false,
"is_script": false,
- "licenses": [],
- "license_expressions": [],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": null,
+ "detected_license_expression_spdx": null,
+ "license_detections": [],
+ "license_clues": [],
"percentage_of_license_text": 0,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 8,
"dirs_count": 0,
"size_count": 59712,
@@ -17945,55 +18222,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/ByteArrayBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 10.1,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18007,13 +18274,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18039,55 +18300,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/CharArrayBuffer.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 7.51,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18101,13 +18352,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18133,55 +18378,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/EncodingUtils.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 21.93,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18195,13 +18430,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18227,55 +18456,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 17.18,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/EntityUtils.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 17.16,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18289,13 +18508,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18321,55 +18534,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
- "percentage_of_license_text": 46.15,
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/ExceptionUtils.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
+ "percentage_of_license_text": 45.87,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18383,13 +18586,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18415,55 +18612,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/LangUtils.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 47.62,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18477,13 +18664,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18509,55 +18690,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 6,
- "end_line": 27,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/package.html",
+ "start_line": 6,
+ "end_line": 27,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 83.8,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18571,13 +18742,7 @@
"end_line": 27
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18603,55 +18768,45 @@
"is_media": false,
"is_source": true,
"is_script": false,
- "licenses": [
- {
- "key": "apache-2.0",
- "score": 100,
- "name": "Apache License 2.0",
- "short_name": "Apache 2.0",
- "category": "Permissive",
- "is_exception": false,
- "is_unknown": false,
- "owner": "Apache Software Foundation",
- "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",
- "spdx_license_key": "Apache-2.0",
- "spdx_url": "https://spdx.org/licenses/Apache-2.0",
- "start_line": 3,
- "end_line": 24,
- "matched_rule": {
- "identifier": "apache-2.0_25_notice.RULE",
- "license_expression": "apache-2.0",
- "licenses": [
- "apache-2.0"
- ],
- "referenced_filenames": [],
- "is_license_text": false,
- "is_license_notice": true,
- "is_license_reference": false,
- "is_license_tag": false,
- "is_license_intro": false,
- "has_unknown": false,
- "matcher": "2-aho",
- "rule_length": 150,
- "matched_length": 150,
- "match_coverage": 100,
- "rule_relevance": 100
- },
- "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
- }
- ],
- "license_expressions": [
- "apache-2.0"
- ],
+ "package_data": [],
+ "for_packages": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": false,
+ "is_key_file": false,
+ "detected_license_expression": "apache-2.0",
+ "detected_license_expression_spdx": "Apache-2.0",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "spdx_license_expression": "Apache-2.0",
+ "from_file": "cd-AQgYDu/org/apache/http/util/VersionInfo.java",
+ "start_line": 3,
+ "end_line": 24,
+ "matcher": "2-aho",
+ "score": 100,
+ "matched_length": 150,
+ "match_coverage": 100,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_25_notice.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE",
+ "matched_text": " * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * .",
+ "matched_text_diagnostics": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n * ====================================================================\n *\n * This software consists of voluntary contributions made by many\n * individuals on behalf of the Apache Software Foundation. For more\n * information on the Apache Software Foundation, please see\n * ."
+ }
+ ],
+ "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa"
+ }
+ ],
+ "license_clues": [],
"percentage_of_license_text": 13.56,
"copyrights": [],
"holders": [],
"authors": [],
- "packages": [],
"emails": [],
"urls": [
{
@@ -18665,13 +18820,7 @@
"end_line": 24
}
],
- "is_legal": false,
- "is_manifest": false,
- "is_readme": false,
- "is_top_level": false,
- "is_key_file": false,
"is_generated": false,
- "is_license_text": false,
"files_count": 0,
"dirs_count": 0,
"size_count": 0,
@@ -18681,4 +18830,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/test/business/summarizerTest.js b/test/business/summarizerTest.js
index da4f67abe..d97165204 100644
--- a/test/business/summarizerTest.js
+++ b/test/business/summarizerTest.js
@@ -13,7 +13,7 @@ describe('Summary Service', () => {
const summaryService = SummaryService({})
const summaries = summaryService.summarizeAll(coords, raw)
- const scancodeSummary = summaries['scancode']['30.3.0']
+ const scancodeSummary = summaries['scancode']['32.3.0']
expect(scancodeSummary.licensed.declared).to.equal('Apache-2.0')
const licenseeSummary = summaries['licensee']['9.14.0']
expect(licenseeSummary.licensed.declared).to.equal('Apache-2.0')
diff --git a/test/fixtures/scancode/30.1.0/debsrc-license-expression.json b/test/fixtures/scancode/30.1.0/debsrc-license-expression.json
index c4c7942d1..e1dd12061 100644
--- a/test/fixtures/scancode/30.1.0/debsrc-license-expression.json
+++ b/test/fixtures/scancode/30.1.0/debsrc-license-expression.json
@@ -1,8924 +1,9098 @@
{
"_metadata": {
- "type": "scancode",
- "url": "cd:/debsrc/debian/-/python-tenacity/8.0.1-1",
- "fetchedAt": "2022-03-15T08:37:52.953Z",
- "links": {
- "self": {
- "href": "urn:debsrc:debian:-:python-tenacity:revision:8.0.1-1:tool:scancode:30.3.0",
- "type": "resource"
- },
- "siblings": {
- "href": "urn:debsrc:debian:-:python-tenacity:revision:8.0.1-1:tool:scancode",
- "type": "collection"
- }
+ "type": "scancode",
+ "url": "cd:/debsrc/debian/-/python-tenacity/8.2.1-1",
+ "fetchedAt": "2024-02-13T21:17:26.804Z",
+ "links": {
+ "self": {
+ "href": "urn:debsrc:debian:-:python-tenacity:revision:8.2.1-1:tool:scancode:30.3.0",
+ "type": "resource"
},
- "schemaVersion": "30.3.0",
- "toolVersion": "30.1.0",
- "contentType": "application/json",
- "releaseDate": "2022-02-06T23:08:02.000Z",
- "processedAt": "2022-03-15T08:38:15.390Z"
+ "siblings": {
+ "href": "urn:debsrc:debian:-:python-tenacity:revision:8.2.1-1:tool:scancode",
+ "type": "collection"
+ }
+ },
+ "schemaVersion": "30.3.0",
+ "toolVersion": "30.1.0",
+ "contentType": "application/json",
+ "releaseDate": "2023-02-20T12:27:19.000Z",
+ "processedAt": "2024-02-13T21:17:42.048Z"
},
"content": {
- "headers": [
- {
- "tool_name": "scancode-toolkit",
- "tool_version": "30.1.0",
- "options": {
- "input": [
- "/tmp/cd-43UBv7"
- ],
- "--classify": true,
- "--copyright": true,
- "--email": true,
- "--generated": true,
- "--info": true,
- "--is-license-text": true,
- "--json-pp": "/tmp/cd-6Gz0BX",
- "--license": true,
- "--license-clarity-score": true,
- "--license-text": true,
- "--license-text-diagnostics": true,
- "--package": true,
- "--processes": "2",
- "--strip-root": true,
- "--summary": true,
- "--summary-key-files": true,
- "--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.",
- "start_timestamp": "2022-03-15T083753.981513",
- "end_timestamp": "2022-03-15T083814.302904",
- "output_format_version": "1.0.0",
- "duration": 20.321408987045288,
- "message": null,
- "errors": [],
- "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.",
- "files_count": 70
- }
- }
+ "headers": [
+ {
+ "tool_name": "scancode-toolkit",
+ "tool_version": "30.1.0",
+ "options": {
+ "input": [
+ "/tmp/cd-JI5pDf"
+ ],
+ "--classify": true,
+ "--copyright": true,
+ "--email": true,
+ "--generated": true,
+ "--info": true,
+ "--is-license-text": true,
+ "--json-pp": "/tmp/cd-kNH5t1",
+ "--license": true,
+ "--license-clarity-score": true,
+ "--license-text": true,
+ "--license-text-diagnostics": true,
+ "--package": true,
+ "--processes": "2",
+ "--strip-root": true,
+ "--summary": true,
+ "--summary-key-files": true,
+ "--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.",
+ "start_timestamp": "2024-02-13T211727.474191",
+ "end_timestamp": "2024-02-13T211741.316179",
+ "output_format_version": "1.0.0",
+ "duration": 13.84200119972229,
+ "message": null,
+ "errors": [],
+ "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.",
+ "files_count": 78
+ }
+ }
+ ],
+ "summary": {
+ "license_expressions": [
+ {
+ "value": "apache-2.0",
+ "count": 30
+ }
],
- "summary": {
- "license_expressions": [
- {
- "value": "apache-2.0",
- "count": 30
- }
+ "copyrights": [
+ {
+ "value": null,
+ "count": 61
+ },
+ {
+ "value": "Copyright Joshua Harlow",
+ "count": 12
+ },
+ {
+ "value": "Copyright Julien Danjou",
+ "count": 12
+ },
+ {
+ "value": "Copyright Ray",
+ "count": 12
+ },
+ {
+ "value": "Copyright Etienne Bersac",
+ "count": 5
+ },
+ {
+ "value": "Copyright Elisey Zanko",
+ "count": 3
+ },
+ {
+ "value": "(c) Joshua Harlow",
+ "count": 1
+ },
+ {
+ "value": "(c) Michal Arbet ",
+ "count": 1
+ },
+ {
+ "value": "(c) Ondrej Koblizek ",
+ "count": 1
+ },
+ {
+ "value": "(c) Ondrej Novy ",
+ "count": 1
+ },
+ {
+ "value": "(c) Ray",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Julien Danjou ",
+ "count": 1
+ },
+ {
+ "value": "Copyright (c) Thomas Goirand ",
+ "count": 1
+ },
+ {
+ "value": "copyright year. d/control Update Vcs- fields with new Debian Python Team",
+ "count": 1
+ }
+ ],
+ "holders": [
+ {
+ "value": null,
+ "count": 61
+ },
+ {
+ "value": "Joshua Harlow",
+ "count": 13
+ },
+ {
+ "value": "Julien Danjou",
+ "count": 13
+ },
+ {
+ "value": "Ray",
+ "count": 13
+ },
+ {
+ "value": "Etienne Bersac",
+ "count": 5
+ },
+ {
+ "value": "Elisey Zanko",
+ "count": 3
+ },
+ {
+ "value": "Michal Arbet",
+ "count": 1
+ },
+ {
+ "value": "Ondrej Koblizek",
+ "count": 1
+ },
+ {
+ "value": "Ondrej Novy",
+ "count": 1
+ },
+ {
+ "value": "Thomas Goirand",
+ "count": 1
+ },
+ {
+ "value": "year. d/control Update Vcs- fields with new Debian Python Team",
+ "count": 1
+ }
+ ],
+ "authors": [
+ {
+ "value": "Julien Danjou ",
+ "count": 174
+ },
+ {
+ "value": null,
+ "count": 73
+ },
+ {
+ "value": "immerrr ",
+ "count": 16
+ },
+ {
+ "value": "Joshua Harlow ",
+ "count": 11
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "count": 10
+ },
+ {
+ "value": "Joshua Harlow ",
+ "count": 8
+ },
+ {
+ "value": "Etienne BERSAC",
+ "count": 5
+ },
+ {
+ "value": "Anders Ellenshoj Andersen ",
+ "count": 4
+ },
+ {
+ "value": "Joshua Harlow ",
+ "count": 4
+ },
+ {
+ "value": "Boden R ",
+ "count": 3
+ },
+ {
+ "value": "Craig Younkins ",
+ "count": 3
+ },
+ {
+ "value": "John Mezger ",
+ "count": 3
+ },
+ {
+ "value": "Sam Park ",
+ "count": 3
+ },
+ {
+ "value": "Simon Dolle ",
+ "count": 3
+ },
+ {
+ "value": "mezgerj ",
+ "count": 3
+ },
+ {
+ "value": "Alex Chan ",
+ "count": 2
+ },
+ {
+ "value": "Brian Williams ",
+ "count": 2
+ },
+ {
+ "value": "Etienne BERSAC ",
+ "count": 2
+ },
+ {
+ "value": "Gevorg Davoian ",
+ "count": 2
+ },
+ {
+ "value": "Hamish Downer ",
+ "count": 2
+ },
+ {
+ "value": "Julien Danjou Author-email julien@danjou.info",
+ "count": 2
+ },
+ {
+ "value": "Michael Elsdorfer ",
+ "count": 2
+ },
+ {
+ "value": "Zane Bitter ",
+ "count": 2
+ },
+ {
+ "value": "mergify-bot ",
+ "count": 2
+ },
+ {
+ "value": "Alex Kuang ",
+ "count": 1
+ },
+ {
+ "value": "Brian Pandola ",
+ "count": 1
+ },
+ {
+ "value": "Brian Williams ",
+ "count": 1
+ },
+ {
+ "value": "Chen Shijiang ",
+ "count": 1
+ },
+ {
+ "value": "Cyrus Durgin ",
+ "count": 1
+ },
+ {
+ "value": "Daniel Bennett ",
+ "count": 1
+ },
+ {
+ "value": "Daniel Fortunov ",
+ "count": 1
+ },
+ {
+ "value": "Daniel Fortunov ",
+ "count": 1
+ },
+ {
+ "value": "Daniel Nephin ",
+ "count": 1
+ },
+ {
+ "value": "Dave Hirschfeld ",
+ "count": 1
+ },
+ {
+ "value": "Derek Wilson ",
+ "count": 1
+ },
+ {
+ "value": "Elisey Zanko ",
+ "count": 1
+ },
+ {
+ "value": "Etienne BERSAC ",
+ "count": 1
+ },
+ {
+ "value": "Haikel Guemar ",
+ "count": 1
+ },
+ {
+ "value": "Hannes Grauler ",
+ "count": 1
+ },
+ {
+ "value": "Jaye Doepke ",
+ "count": 1
+ },
+ {
+ "value": "Jonathan Herriott ",
+ "count": 1
+ },
+ {
+ "value": "Julien Danjou",
+ "count": 1
+ },
+ {
+ "value": "Malthe Borch ",
+ "count": 1
+ },
+ {
+ "value": "Martin Larralde ",
+ "count": 1
+ },
+ {
+ "value": "Matthew Planchard ",
+ "count": 1
+ },
+ {
+ "value": "Mehdi Abaakouk ",
+ "count": 1
+ },
+ {
+ "value": "Michael Evans ",
+ "count": 1
+ },
+ {
+ "value": "Monty Taylor ",
+ "count": 1
+ },
+ {
+ "value": "N/A Abstract Sphinx",
+ "count": 1
+ },
+ {
+ "value": "Ryan Peck ",
+ "count": 1
+ },
+ {
+ "value": "Saul Shanabrook ",
+ "count": 1
+ },
+ {
+ "value": "Simeon Visser ",
+ "count": 1
+ },
+ {
+ "value": "Tim Burke ",
+ "count": 1
+ },
+ {
+ "value": "Victor Yap ",
+ "count": 1
+ },
+ {
+ "value": "William Silversmith ",
+ "count": 1
+ }
+ ],
+ "programming_language": [
+ {
+ "value": "Python",
+ "count": 18
+ },
+ {
+ "value": "Haxe",
+ "count": 3
+ },
+ {
+ "value": "Objective-C",
+ "count": 1
+ }
+ ],
+ "packages": [
+ {
+ "type": "pypi",
+ "namespace": null,
+ "name": "tenacity",
+ "version": "8.2.1",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Python",
+ "description": "Retry code until it succeeds\nTenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.",
+ "release_date": null,
+ "parties": [
+ {
+ "type": "person",
+ "role": "author",
+ "name": "Julien Danjou",
+ "email": "julien@danjou.info",
+ "url": null
+ }
],
- "copyrights": [
- {
- "value": null,
- "count": 53
- },
- {
- "value": "Copyright Joshua Harlow",
- "count": 12
- },
- {
- "value": "Copyright Julien Danjou",
- "count": 12
- },
- {
- "value": "Copyright Ray",
- "count": 12
- },
- {
- "value": "Copyright Etienne Bersac",
- "count": 5
- },
- {
- "value": "Copyright Elisey Zanko",
- "count": 3
- },
- {
- "value": "(c) Joshua Harlow",
- "count": 1
- },
- {
- "value": "(c) Michal Arbet ",
- "count": 1
- },
- {
- "value": "(c) Ondrej Koblizek ",
- "count": 1
- },
- {
- "value": "(c) Ondrej Novy ",
- "count": 1
- },
- {
- "value": "(c) Ray",
- "count": 1
- },
- {
- "value": "Copyright (c) Julien Danjou ",
- "count": 1
- },
- {
- "value": "Copyright (c) Thomas Goirand ",
- "count": 1
- },
- {
- "value": "copyright year. d/control Update Vcs- fields with new Debian Python Team",
- "count": 1
- }
+ "keywords": [
+ "Intended Audience :: Developers",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Topic :: Utilities"
],
- "holders": [
- {
- "value": null,
- "count": 53
- },
- {
- "value": "Joshua Harlow",
- "count": 13
- },
- {
- "value": "Julien Danjou",
- "count": 13
- },
- {
- "value": "Ray",
- "count": 13
- },
- {
- "value": "Etienne Bersac",
- "count": 5
- },
- {
- "value": "Elisey Zanko",
- "count": 3
- },
- {
- "value": "Michal Arbet",
- "count": 1
- },
- {
- "value": "Ondrej Koblizek",
- "count": 1
- },
- {
- "value": "Ondrej Novy",
- "count": 1
- },
- {
- "value": "Thomas Goirand",
- "count": 1
- },
- {
- "value": "year. d/control Update Vcs- fields with new Debian Python Team",
- "count": 1
- }
+ "homepage_url": "https://github.com/jd/tenacity",
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "license_expression": "apache-2.0",
+ "declared_license": {
+ "license": "Apache 2.0",
+ "classifiers": [
+ "License :: OSI Approved :: Apache Software License"
+ ]
+ },
+ "notice_text": null,
+ "root_path": "tenacity-8.2.1/PKG-INFO",
+ "dependencies": [],
+ "contains_source_code": null,
+ "source_packages": [],
+ "extra_data": {},
+ "purl": "pkg:pypi/tenacity@8.2.1",
+ "repository_homepage_url": "https://pypi.org/project/https://pypi.org",
+ "repository_download_url": "https://pypi.org/packages/source/t/tenacity/tenacity-8.2.1.tar.gz",
+ "api_data_url": "https://pypi.org/pypi/tenacity/8.2.1/json",
+ "files": [
+ {
+ "path": "tenacity-8.2.1/PKG-INFO",
+ "type": "file"
+ }
+ ]
+ },
+ {
+ "type": "pypi",
+ "namespace": null,
+ "name": null,
+ "version": null,
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Python",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "license_expression": null,
+ "declared_license": null,
+ "notice_text": null,
+ "root_path": "tenacity-8.2.1/setup.cfg",
+ "dependencies": [
+ {
+ "purl": "pkg:pypi/reno",
+ "requirement": "reno",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/sphinx",
+ "requirement": "sphinx",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/tornado",
+ "requirement": ">=4.5",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ }
],
- "authors": [
- {
- "value": "Julien Danjou ",
- "count": 174
- },
- {
- "value": null,
- "count": 65
- },
- {
- "value": "immerrr ",
- "count": 16
- },
- {
- "value": "Joshua Harlow ",
- "count": 11
- },
- {
- "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
- "count": 10
- },
- {
- "value": "Joshua Harlow ",
- "count": 8
- },
- {
- "value": "Etienne BERSAC",
- "count": 5
- },
- {
- "value": "Anders Ellenshoj Andersen ",
- "count": 4
- },
- {
- "value": "Joshua Harlow ",
- "count": 4
- },
- {
- "value": "Boden R ",
- "count": 3
- },
- {
- "value": "Craig Younkins ",
- "count": 3
- },
- {
- "value": "John Mezger ",
- "count": 3
- },
- {
- "value": "Sam Park ",
- "count": 3
- },
- {
- "value": "Simon Dolle ",
- "count": 3
- },
- {
- "value": "mezgerj ",
- "count": 3
- },
- {
- "value": "Alex Chan ",
- "count": 2
- },
- {
- "value": "Brian Williams ",
- "count": 2
- },
- {
- "value": "Etienne BERSAC ",
- "count": 2
- },
- {
- "value": "Gevorg Davoian ",
- "count": 2
- },
- {
- "value": "Hamish Downer ",
- "count": 2
- },
- {
- "value": "Julien Danjou Author-email julien@danjou.info",
- "count": 2
- },
- {
- "value": "Michael Elsdorfer ",
- "count": 2
- },
- {
- "value": "Zane Bitter ",
- "count": 2
- },
- {
- "value": "mergify-bot ",
- "count": 2
- },
- {
- "value": "Alex Kuang ",
- "count": 1
- },
- {
- "value": "Brian Pandola ",
- "count": 1
- },
- {
- "value": "Brian Williams ",
- "count": 1
- },
- {
- "value": "Chen Shijiang ",
- "count": 1
- },
- {
- "value": "Cyrus Durgin ",
- "count": 1
- },
- {
- "value": "Daniel Bennett ",
- "count": 1
- },
- {
- "value": "Daniel Fortunov ",
- "count": 1
- },
- {
- "value": "Daniel Fortunov ",
- "count": 1
- },
- {
- "value": "Daniel Nephin ",
- "count": 1
- },
- {
- "value": "Dave Hirschfeld ",
- "count": 1
- },
- {
- "value": "Derek Wilson ",
- "count": 1
- },
- {
- "value": "Elisey Zanko ",
- "count": 1
- },
- {
- "value": "Etienne BERSAC ",
- "count": 1
- },
- {
- "value": "Haikel Guemar ",
- "count": 1
- },
- {
- "value": "Hannes Grauler ",
- "count": 1
- },
- {
- "value": "Jaye Doepke ",
- "count": 1
- },
- {
- "value": "Jonathan Herriott ",
- "count": 1
- },
- {
- "value": "Julien Danjou",
- "count": 1
- },
- {
- "value": "Malthe Borch ",
- "count": 1
- },
- {
- "value": "Martin Larralde ",
- "count": 1
- },
- {
- "value": "Matthew Planchard ",
- "count": 1
- },
- {
- "value": "Mehdi Abaakouk ",
- "count": 1
- },
- {
- "value": "Michael Evans ",
- "count": 1
- },
- {
- "value": "Monty Taylor ",
- "count": 1
- },
- {
- "value": "N/A Abstract Sphinx",
- "count": 1
- },
- {
- "value": "Ryan Peck ",
- "count": 1
- },
- {
- "value": "Saul Shanabrook ",
- "count": 1
- },
- {
- "value": "Simeon Visser ",
- "count": 1
- },
- {
- "value": "Tim Burke ",
- "count": 1
- },
- {
- "value": "Victor Yap ",
- "count": 1
- },
- {
- "value": "William Silversmith ",
- "count": 1
- }
+ "contains_source_code": null,
+ "source_packages": [],
+ "extra_data": {},
+ "purl": null,
+ "repository_homepage_url": null,
+ "repository_download_url": null,
+ "api_data_url": null,
+ "files": [
+ {
+ "path": "tenacity-8.2.1/setup.cfg",
+ "type": "file"
+ }
+ ]
+ },
+ {
+ "type": "pypi",
+ "namespace": null,
+ "name": null,
+ "version": null,
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Python",
+ "description": "",
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "license_expression": null,
+ "declared_license": {},
+ "notice_text": null,
+ "root_path": "tenacity-8.2.1/setup.py",
+ "dependencies": [],
+ "contains_source_code": null,
+ "source_packages": [],
+ "extra_data": {},
+ "purl": null,
+ "repository_homepage_url": null,
+ "repository_download_url": null,
+ "api_data_url": null,
+ "files": [
+ {
+ "path": "tenacity-8.2.1/setup.py",
+ "type": "file"
+ }
+ ]
+ },
+ {
+ "type": "pypi",
+ "namespace": null,
+ "name": null,
+ "version": null,
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Python",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "license_expression": null,
+ "declared_license": null,
+ "notice_text": null,
+ "root_path": "tenacity-8.2.1/tox.ini",
+ "dependencies": [
+ {
+ "purl": "pkg:pypi/pytest",
+ "requirement": "pytest",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/typeguard",
+ "requirement": "typeguard",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8",
+ "requirement": "flake8",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-import-order",
+ "requirement": "flake8-import-order",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-blind-except",
+ "requirement": "flake8-blind-except",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-builtins",
+ "requirement": "flake8-builtins",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-docstrings",
+ "requirement": "flake8-docstrings",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-rst-docstrings",
+ "requirement": "flake8-rst-docstrings",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/flake8-logging-format",
+ "requirement": "flake8-logging-format",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/black",
+ "requirement": "black",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/mypy",
+ "requirement": ">=1.0.0",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/black",
+ "requirement": "black",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/reno",
+ "requirement": "reno",
+ "scope": "install",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ }
],
- "programming_language": [
- {
- "value": "Python",
- "count": 18
- },
- {
- "value": "Haxe",
- "count": 3
- },
- {
- "value": "Objective-C",
- "count": 1
- }
+ "contains_source_code": null,
+ "source_packages": [],
+ "extra_data": {},
+ "purl": null,
+ "repository_homepage_url": null,
+ "repository_download_url": null,
+ "api_data_url": null,
+ "files": [
+ {
+ "path": "tenacity-8.2.1/tox.ini",
+ "type": "file"
+ }
+ ]
+ },
+ {
+ "type": "pypi",
+ "namespace": null,
+ "name": "tenacity",
+ "version": "8.2.1",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Python",
+ "description": "Retry code until it succeeds\nTenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.",
+ "release_date": null,
+ "parties": [
+ {
+ "type": "person",
+ "role": "author",
+ "name": "Julien Danjou",
+ "email": "julien@danjou.info",
+ "url": null
+ }
],
- "packages": [
- {
- "type": "pypi",
- "namespace": null,
- "name": "tenacity",
- "version": "8.0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Python",
- "description": "Retry code until it succeeds\nTenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "author",
- "name": "Julien Danjou",
- "email": "julien@danjou.info",
- "url": null
- }
- ],
- "keywords": [
- "Intended Audience :: Developers",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3 :: Only",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Topic :: Utilities"
- ],
- "homepage_url": "https://github.com/jd/tenacity",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "license_expression": "apache-2.0",
- "declared_license": {
- "license": "Apache 2.0",
- "classifiers": [
- "License :: OSI Approved :: Apache Software License"
- ]
- },
- "notice_text": null,
- "root_path": "tenacity-8.0.1/PKG-INFO",
- "dependencies": [],
- "contains_source_code": null,
- "source_packages": [],
- "extra_data": {},
- "purl": "pkg:pypi/tenacity@8.0.1",
- "repository_homepage_url": "https://pypi.org/project/https://pypi.org",
- "repository_download_url": "https://pypi.org/packages/source/t/tenacity/tenacity-8.0.1.tar.gz",
- "api_data_url": "https://pypi.org/pypi/tenacity/8.0.1/json",
- "files": [
- {
- "path": "tenacity-8.0.1/PKG-INFO",
- "type": "file"
- }
- ]
- },
- {
- "type": "pypi",
- "namespace": null,
- "name": null,
- "version": null,
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Python",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "license_expression": null,
- "declared_license": null,
- "notice_text": null,
- "root_path": "tenacity-8.0.1/setup.cfg",
- "dependencies": [
- {
- "purl": "pkg:pypi/reno",
- "requirement": "reno",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/sphinx",
- "requirement": "sphinx",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/tornado",
- "requirement": ">=4.5",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- }
- ],
- "contains_source_code": null,
- "source_packages": [],
- "extra_data": {},
- "purl": null,
- "repository_homepage_url": null,
- "repository_download_url": null,
- "api_data_url": null,
- "files": [
- {
- "path": "tenacity-8.0.1/setup.cfg",
- "type": "file"
- }
- ]
- },
- {
- "type": "pypi",
- "namespace": null,
- "name": null,
- "version": null,
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Python",
- "description": "",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "license_expression": null,
- "declared_license": {},
- "notice_text": null,
- "root_path": "tenacity-8.0.1/setup.py",
- "dependencies": [],
- "contains_source_code": null,
- "source_packages": [],
- "extra_data": {},
- "purl": null,
- "repository_homepage_url": null,
- "repository_download_url": null,
- "api_data_url": null,
- "files": [
- {
- "path": "tenacity-8.0.1/setup.py",
- "type": "file"
- }
- ]
- },
- {
- "type": "pypi",
- "namespace": null,
- "name": null,
- "version": null,
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Python",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "license_expression": null,
- "declared_license": null,
- "notice_text": null,
- "root_path": "tenacity-8.0.1/tox.ini",
- "dependencies": [
- {
- "purl": "pkg:pypi/pytest",
- "requirement": "pytest",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/typeguard",
- "requirement": "typeguard",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8",
- "requirement": "flake8",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-import-order",
- "requirement": "flake8-import-order",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-blind-except",
- "requirement": "flake8-blind-except",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-builtins",
- "requirement": "flake8-builtins",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-docstrings",
- "requirement": "flake8-docstrings",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-rst-docstrings",
- "requirement": "flake8-rst-docstrings",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/flake8-logging-format",
- "requirement": "flake8-logging-format",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/black",
- "requirement": "black",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/black",
- "requirement": "black",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/reno",
- "requirement": "reno",
- "scope": "install",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- }
- ],
- "contains_source_code": null,
- "source_packages": [],
- "extra_data": {},
- "purl": null,
- "repository_homepage_url": null,
- "repository_download_url": null,
- "api_data_url": null,
- "files": [
- {
- "path": "tenacity-8.0.1/tox.ini",
- "type": "file"
- }
- ]
- },
- {
- "type": "pypi",
- "namespace": null,
- "name": "tenacity",
- "version": "8.0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Python",
- "description": "Retry code until it succeeds\nTenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "author",
- "name": "Julien Danjou",
- "email": "julien@danjou.info",
- "url": null
- }
- ],
- "keywords": [
- "Intended Audience :: Developers",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3 :: Only",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Topic :: Utilities"
- ],
- "homepage_url": "https://github.com/jd/tenacity",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "license_expression": "apache-2.0",
- "declared_license": {
- "license": "Apache 2.0",
- "classifiers": [
- "License :: OSI Approved :: Apache Software License"
- ]
- },
- "notice_text": null,
- "root_path": "tenacity-8.0.1/tenacity.egg-info/PKG-INFO",
- "dependencies": [
- {
- "purl": "pkg:pypi/reno",
- "requirement": null,
- "scope": "doc",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/sphinx",
- "requirement": null,
- "scope": "doc",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- },
- {
- "purl": "pkg:pypi/tornado",
- "requirement": ">=4.5",
- "scope": "doc",
- "is_runtime": true,
- "is_optional": false,
- "is_resolved": false
- }
- ],
- "contains_source_code": null,
- "source_packages": [],
- "extra_data": {},
- "purl": "pkg:pypi/tenacity@8.0.1",
- "repository_homepage_url": "https://pypi.org/project/https://pypi.org",
- "repository_download_url": "https://pypi.org/packages/source/t/tenacity/tenacity-8.0.1.tar.gz",
- "api_data_url": "https://pypi.org/pypi/tenacity/8.0.1/json",
- "files": [
- {
- "path": "tenacity-8.0.1/tenacity.egg-info/PKG-INFO",
- "type": "file"
- }
- ]
- }
+ "keywords": [
+ "Intended Audience :: Developers",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Topic :: Utilities"
+ ],
+ "homepage_url": "https://github.com/jd/tenacity",
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "license_expression": "apache-2.0",
+ "declared_license": {
+ "license": "Apache 2.0",
+ "classifiers": [
+ "License :: OSI Approved :: Apache Software License"
+ ]
+ },
+ "notice_text": null,
+ "root_path": "tenacity-8.2.1/tenacity.egg-info/PKG-INFO",
+ "dependencies": [
+ {
+ "purl": "pkg:pypi/reno",
+ "requirement": null,
+ "scope": "doc",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/sphinx",
+ "requirement": null,
+ "scope": "doc",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ },
+ {
+ "purl": "pkg:pypi/tornado",
+ "requirement": ">=4.5",
+ "scope": "doc",
+ "is_runtime": true,
+ "is_optional": false,
+ "is_resolved": false
+ }
+ ],
+ "contains_source_code": null,
+ "source_packages": [],
+ "extra_data": {},
+ "purl": "pkg:pypi/tenacity@8.2.1",
+ "repository_homepage_url": "https://pypi.org/project/https://pypi.org",
+ "repository_download_url": "https://pypi.org/packages/source/t/tenacity/tenacity-8.2.1.tar.gz",
+ "api_data_url": "https://pypi.org/pypi/tenacity/8.2.1/json",
+ "files": [
+ {
+ "path": "tenacity-8.2.1/tenacity.egg-info/PKG-INFO",
+ "type": "file"
+ }
]
+ }
+ ]
+ },
+ "license_clarity_score": {
+ "score": 50,
+ "declared": true,
+ "discovered": 0.21,
+ "consistency": false,
+ "spdx": false,
+ "license_texts": true
+ },
+ "summary_of_key_files": {
+ "license_expressions": [],
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "programming_language": []
+ },
+ "files": [
+ {
+ "path": "debian",
+ "type": "directory",
+ "name": "debian",
+ "base_name": "debian",
+ "extension": "",
+ "size": 0,
+ "date": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "mime_type": null,
+ "file_type": null,
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": false,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "percentage_of_license_text": 0,
+ "copyrights": [],
+ "holders": [],
+ "authors": [],
+ "packages": [],
+ "emails": [],
+ "urls": [],
+ "is_legal": false,
+ "is_manifest": false,
+ "is_readme": false,
+ "is_top_level": true,
+ "is_key_file": false,
+ "is_generated": false,
+ "is_license_text": false,
+ "files_count": 15,
+ "dirs_count": 4,
+ "size_count": 104278,
+ "scan_errors": []
+ },
+ {
+ "path": "debian/CHANGELOG",
+ "type": "file",
+ "name": "CHANGELOG",
+ "base_name": "CHANGELOG",
+ "extension": "",
+ "size": 90889,
+ "date": "2023-02-20",
+ "sha1": "b2b22ff8208907eaffb1e85eca937889f68c4085",
+ "md5": "6ac84e545f47dbf940951a4d712b3b14",
+ "sha256": "c668b89b166d59953e5b196a6bb495a1bed46c56e89e8333e267b23e4ceabaee",
+ "mime_type": "text/plain",
+ "file_type": "Git commit 5",
+ "programming_language": null,
+ "is_binary": false,
+ "is_text": true,
+ "is_archive": false,
+ "is_media": false,
+ "is_source": false,
+ "is_script": false,
+ "licenses": [],
+ "license_expressions": [],
+ "percentage_of_license_text": 0,
+ "copyrights": [],
+ "holders": [],
+ "authors": [
+ {
+ "value": "Daniel Fortunov ",
+ "start_line": 2,
+ "end_line": 2
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 20,
+ "end_line": 20
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 26,
+ "end_line": 26
+ },
+ {
+ "value": "Matthew Planchard ",
+ "start_line": 38,
+ "end_line": 38
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 56,
+ "end_line": 56
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 63,
+ "end_line": 63
+ },
+ {
+ "value": "Anders Ellenshoj Andersen ",
+ "start_line": 71,
+ "end_line": 71
+ },
+ {
+ "value": "Anders Ellenshoj Andersen ",
+ "start_line": 77,
+ "end_line": 77
+ },
+ {
+ "value": "Anders Ellenshoj Andersen ",
+ "start_line": 83,
+ "end_line": 83
+ },
+ {
+ "value": "Anders Ellenshoj Andersen ",
+ "start_line": 89,
+ "end_line": 89
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 96,
+ "end_line": 96
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 104,
+ "end_line": 104
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 111,
+ "end_line": 111
+ },
+ {
+ "value": "Alex Chan ",
+ "start_line": 119,
+ "end_line": 119
+ },
+ {
+ "value": "Alex Chan ",
+ "start_line": 125,
+ "end_line": 125
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 150,
+ "end_line": 150
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 158,
+ "end_line": 158
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 164,
+ "end_line": 164
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 171,
+ "end_line": 171
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 179,
+ "end_line": 179
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 186,
+ "end_line": 186
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 195,
+ "end_line": 195
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 202,
+ "end_line": 202
+ },
+ {
+ "value": "Etienne BERSAC ",
+ "start_line": 210,
+ "end_line": 210
+ },
+ {
+ "value": "Etienne BERSAC ",
+ "start_line": 216,
+ "end_line": 216
+ },
+ {
+ "value": "Etienne BERSAC ",
+ "start_line": 224,
+ "end_line": 224
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 231,
+ "end_line": 231
+ },
+ {
+ "value": "Chen Shijiang ",
+ "start_line": 239,
+ "end_line": 239
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 246,
+ "end_line": 246
+ },
+ {
+ "value": "Daniel Fortunov ",
+ "start_line": 254,
+ "end_line": 254
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 266,
+ "end_line": 266
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 274,
+ "end_line": 274
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 280,
+ "end_line": 280
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 286,
+ "end_line": 286
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 293,
+ "end_line": 293
+ },
+ {
+ "value": "mezgerj ",
+ "start_line": 301,
+ "end_line": 301
+ },
+ {
+ "value": "mezgerj ",
+ "start_line": 307,
+ "end_line": 307
+ },
+ {
+ "value": "mezgerj ",
+ "start_line": 314,
+ "end_line": 314
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 320,
+ "end_line": 320
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 331,
+ "end_line": 331
+ },
+ {
+ "value": "Malthe Borch ",
+ "start_line": 339,
+ "end_line": 339
+ },
+ {
+ "value": "John Mezger ",
+ "start_line": 347,
+ "end_line": 347
+ },
+ {
+ "value": "John Mezger ",
+ "start_line": 353,
+ "end_line": 353
+ },
+ {
+ "value": "John Mezger ",
+ "start_line": 359,
+ "end_line": 359
+ },
+ {
+ "value": "mergify bot <37929162+mergify bot users.noreply.github.com>",
+ "start_line": 366,
+ "end_line": 366
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 375,
+ "end_line": 375
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 382,
+ "end_line": 382
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 390,
+ "end_line": 390
+ },
+ {
+ "value": "Craig Younkins ",
+ "start_line": 396,
+ "end_line": 396
+ },
+ {
+ "value": "Craig Younkins ",
+ "start_line": 411,
+ "end_line": 411
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 421,
+ "end_line": 421
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 429,
+ "end_line": 429
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 436,
+ "end_line": 436
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 444,
+ "end_line": 444
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 450,
+ "end_line": 450
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 456,
+ "end_line": 456
+ },
+ {
+ "value": "Craig Younkins ",
+ "start_line": 462,
+ "end_line": 462
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 468,
+ "end_line": 468
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 474,
+ "end_line": 474
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 482,
+ "end_line": 482
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 488,
+ "end_line": 488
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 494,
+ "end_line": 494
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 500,
+ "end_line": 500
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 506,
+ "end_line": 506
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 512,
+ "end_line": 512
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 518,
+ "end_line": 518
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 524,
+ "end_line": 524
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 530,
+ "end_line": 530
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 538,
+ "end_line": 538
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 544,
+ "end_line": 544
+ },
+ {
+ "value": "Sam Park ",
+ "start_line": 552,
+ "end_line": 552
+ },
+ {
+ "value": "Sam Park ",
+ "start_line": 560,
+ "end_line": 560
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 568,
+ "end_line": 568
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 576,
+ "end_line": 576
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 584,
+ "end_line": 584
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 590,
+ "end_line": 590
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 596,
+ "end_line": 596
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 602,
+ "end_line": 602
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 618,
+ "end_line": 618
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 624,
+ "end_line": 624
+ },
+ {
+ "value": "Sam Park ",
+ "start_line": 630,
+ "end_line": 630
+ },
+ {
+ "value": "Brian Pandola ",
+ "start_line": 677,
+ "end_line": 677
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 683,
+ "end_line": 683
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 698,
+ "end_line": 698
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 750,
+ "end_line": 750
+ },
+ {
+ "value": "mergify-bot ",
+ "start_line": 770,
+ "end_line": 770
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 776,
+ "end_line": 776
+ },
+ {
+ "value": "Dave Hirschfeld ",
+ "start_line": 791,
+ "end_line": 791
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 797,
+ "end_line": 797
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 803,
+ "end_line": 803
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 809,
+ "end_line": 809
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 815,
+ "end_line": 815
+ },
+ {
+ "value": "mergify-bot ",
+ "start_line": 831,
+ "end_line": 831
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 846,
+ "end_line": 846
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 852,
+ "end_line": 852
+ },
+ {
+ "value": "Brian Williams ",
+ "start_line": 867,
+ "end_line": 867
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 893,
+ "end_line": 893
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 899,
+ "end_line": 899
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 905,
+ "end_line": 905
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 911,
+ "end_line": 911
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 917,
+ "end_line": 917
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 932,
+ "end_line": 932
+ },
+ {
+ "value": "immerrr ",
+ "start_line": 938,
+ "end_line": 938
+ },
+ {
+ "value": "Hamish Downer ",
+ "start_line": 944,
+ "end_line": 944
+ },
+ {
+ "value": "Hamish Downer ",
+ "start_line": 953,
+ "end_line": 953
+ },
+ {
+ "value": "Daniel Bennett ",
+ "start_line": 959,
+ "end_line": 959
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 965,
+ "end_line": 965
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 971,
+ "end_line": 971
+ },
+ {
+ "value": "Hannes Grauler ",
+ "start_line": 977,
+ "end_line": 977
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 985,
+ "end_line": 985
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 993,
+ "end_line": 993
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 999,
+ "end_line": 999
+ },
+ {
+ "value": "Michael Elsdorfer ",
+ "start_line": 1005,
+ "end_line": 1005
+ },
+ {
+ "value": "Michael Elsdorfer ",
+ "start_line": 1011,
+ "end_line": 1011
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1017,
+ "end_line": 1017
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1025,
+ "end_line": 1025
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1031,
+ "end_line": 1031
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1039,
+ "end_line": 1039
+ },
+ {
+ "value": "Martin Larralde ",
+ "start_line": 1045,
+ "end_line": 1045
+ },
+ {
+ "value": "Jaye Doepke ",
+ "start_line": 1051,
+ "end_line": 1051
+ },
+ {
+ "value": "Tim Burke ",
+ "start_line": 1060,
+ "end_line": 1060
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1070,
+ "end_line": 1070
+ },
+ {
+ "value": "Joshua Harlow ",
+ "start_line": 1078,
+ "end_line": 1078
+ },
+ {
+ "value": "Joshua Harlow ",
+ "start_line": 1088,
+ "end_line": 1088
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1096,
+ "end_line": 1096
+ },
+ {
+ "value": "Brian Williams ",
+ "start_line": 1104,
+ "end_line": 1104
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1117,
+ "end_line": 1117
+ },
+ {
+ "value": "Elisey Zanko ",
+ "start_line": 1125,
+ "end_line": 1125
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1131,
+ "end_line": 1131
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1139,
+ "end_line": 1139
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1147,
+ "end_line": 1147
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1153,
+ "end_line": 1153
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1159,
+ "end_line": 1159
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1165,
+ "end_line": 1165
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1173,
+ "end_line": 1173
+ },
+ {
+ "value": "Victor Yap ",
+ "start_line": 1179,
+ "end_line": 1179
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1215,
+ "end_line": 1215
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1221,
+ "end_line": 1221
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1230,
+ "end_line": 1230
+ },
+ {
+ "value": "Zane Bitter ",
+ "start_line": 1238,
+ "end_line": 1238
+ },
+ {
+ "value": "Zane Bitter ",
+ "start_line": 1244,
+ "end_line": 1244
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1275,
+ "end_line": 1275
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1297,
+ "end_line": 1297
+ },
+ {
+ "value": "Brian Williams ",
+ "start_line": 1305,
+ "end_line": 1305
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1311,
+ "end_line": 1311
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1322,
+ "end_line": 1322
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1330,
+ "end_line": 1330
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1339,
+ "end_line": 1339
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1348,
+ "end_line": 1348
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1356,
+ "end_line": 1356
+ },
+ {
+ "value": "William Silversmith ",
+ "start_line": 1364,
+ "end_line": 1364
+ },
+ {
+ "value": "Joshua Harlow ",
+ "start_line": 1387,
+ "end_line": 1387
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1393,
+ "end_line": 1393
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1403,
+ "end_line": 1403
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1409,
+ "end_line": 1409
+ },
+ {
+ "value": "Julien Danjou ",
+ "start_line": 1421,
+ "end_line": 1421
+ },
+ {
+ "value": "Julien Danjou