From c2fc97c0936fd7bee1a834098c799e9d4a13eed2 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Mon, 20 Nov 2023 16:26:38 +0000 Subject: [PATCH 01/13] conda service implementation removed extra semicolon added architecture to conda revisions removed base version fix version fetching fixed lint errors update added tests Fix license not detected for some maven packages When processing scancode result, license information is first derived from package level data. When this is not available, ScanCodeSummarizer goes through the root files to look for license. Filtering for root files is based on case sensitive file path matching. In maven packaging, META/INF directory is the standard (see https://issues.apache.org/jira/browse/MJAR-73?attachmentOrder=desc, and https://issues.apache.org/jira/browse/MEAR-30). Change the location for maven to reflect the casing. utils.getLicenseLocations is also used in utils.isLicenseFile. isLicenseFile uses case insensitive matching. Preserve this case insensitive file path matching by converting the result from getLicenseLocations to lowercase there. Test case: https://clearlydefined.io/definitions/maven/mavencentral/org.flywaydb/flyway-core/9.20.0 https://dev.clearlydefined.io/definitions/maven/mavencentral/org.flywaydb/flyway-core/7.7.2 Task: https://github.com/clearlydefined/service/issues/846 Fix license detection for some sourcearchive packages Task: https://github.com/clearlydefined/crawler/issues/533 fixed test update --- README.md | 4 + app.js | 1 + business/statsService.js | 2 + lib/licenseMatcher.js | 4 + lib/utils.js | 11 +- providers/summary/clearlydefined.js | 29 + routes/originConda.js | 72 + schemas/curation-1.0.json | 5 + schemas/curations-1.0.json | 5 + schemas/definition-1.0.json | 5 + ...rg.apache.httpcomponents-httpcore-4.1.json | 18684 ++++++++++++++++ test/business/summarizerTest.js | 21 + .../30.1.0/maven-flywaydb-file-license.json | 1531 ++ test/lib/util.js | 42 +- test/providers/summary/scancode.js | 7 + test/summary/clearlydefinedTests.js | 43 + 16 files changed, 20456 insertions(+), 10 deletions(-) create mode 100644 routes/originConda.js create mode 100644 test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json create mode 100644 test/business/summarizerTest.js create mode 100644 test/fixtures/scancode/30.1.0/maven-flywaydb-file-license.json diff --git a/README.md b/README.md index 0f2439663..3807d5ea4 100644 --- a/README.md +++ b/README.md @@ -243,6 +243,7 @@ The format of harvested data is tool-specific. Tool output is stored in the tool - composer - rubygem - deb +- conda ## Provider Registry @@ -258,6 +259,9 @@ The format of harvested data is tool-specific. Tool output is stored in the tool - packagist.org - proxy.golang.org - ftp.debian.org +- repo.anaconda.com/pkgs/main (anaconda-main) +- repo.anaconda.com/pkgs/r (anaconda-r) +- conda.anaconda.org/conda-forge (conda-forge) ## Tool Name Registry diff --git a/app.js b/app.js index 6859b5aa0..5547e90ce 100644 --- a/app.js +++ b/app.js @@ -184,6 +184,7 @@ function createApp(config) { app.use('/', require('./routes/index')) app.use('/origins/github', require('./routes/originGitHub')()) app.use('/origins/crate', require('./routes/originCrate')()) + app.use('/origins/conda', require('./routes/originConda')()) app.use('/origins/pod', require('./routes/originPod')()) app.use('/origins/npm', require('./routes/originNpm')()) app.use('/origins/maven', require('./routes/originMaven')()) diff --git a/business/statsService.js b/business/statsService.js index 8167713a1..507fc16c9 100644 --- a/business/statsService.js +++ b/business/statsService.js @@ -35,6 +35,8 @@ class StatsService { _getStatLookup() { return { total: () => this._getType('total'), + conda: () => this._getType('conda'), + condasource: () => this._getType('condasource'), crate: () => this._getType('crate'), gem: () => this._getType('gem'), git: () => this._getType('git'), diff --git a/lib/licenseMatcher.js b/lib/licenseMatcher.js index a4316068c..e43f542d3 100644 --- a/lib/licenseMatcher.js +++ b/lib/licenseMatcher.js @@ -111,6 +111,10 @@ class HarvestLicenseMatchPolicy { switch (type) { case 'maven': return new BaseHarvestLicenseMatchStrategy('maven', ['manifest.summary.licenses']) + case 'conda': + return new BaseHarvestLicenseMatchStrategy('conda', ['registryData.license']) + case 'condasource': + return new BaseHarvestLicenseMatchStrategy('condasource', ['registryData.license']) case 'crate': return new BaseHarvestLicenseMatchStrategy('crate', ['registryData.license']) case 'pod': diff --git a/lib/utils.js b/lib/utils.js index 7c52be210..4c95404d0 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -321,7 +321,8 @@ function isLicenseFile(filePath, coordinates) { if (_licenseFileNames.includes(basePath)) return true if (!coordinates) return false for (const prefix of getLicenseLocations(coordinates) || []) { - if (_licenseFileNames.includes(filePath.replace(prefix, ''))) return true + const prefixLowered = prefix.toLowerCase() + if (_licenseFileNames.includes(filePath.replace(prefixLowered, ''))) return true } return false } @@ -338,7 +339,13 @@ function isDeclaredLicense(identifier) { } function getLicenseLocations(coordinates) { - const map = { npm: ['package/'], maven: ['meta-inf/'], pypi: [`${coordinates.name}-${coordinates.revision}/`], go: [goLicenseLocations(coordinates)] } + const map = { + npm: ['package/'], + maven: ['META-INF/'], + pypi: [`${coordinates.name}-${coordinates.revision}/`], + go: [goLicenseLocations(coordinates)] + } + map.sourcearchive = map.maven return map[coordinates.type] } diff --git a/providers/summary/clearlydefined.js b/providers/summary/clearlydefined.js index 13278b551..cafcb01ea 100644 --- a/providers/summary/clearlydefined.js +++ b/providers/summary/clearlydefined.js @@ -20,6 +20,12 @@ const mavenBasedUrls = { gradleplugin: 'https://plugins.gradle.org/m2' } +const condaChannels = { + 'anaconda-main': 'https://repo.anaconda.com/pkgs/main', + 'anaconda-r': 'https://repo.anaconda.com/pkgs/r', + 'conda-forge': 'https://conda.anaconda.org/conda-forge' +} + class ClearlyDescribedSummarizer { constructor(options) { this.options = options @@ -44,6 +50,12 @@ class ClearlyDescribedSummarizer { case 'npm': this.addNpmData(result, data, coordinates) break + case 'conda': + this.addCondaData(result, data, coordinates) + break + case 'condasource': + this.addCondaSrcData(result, data, coordinates) + break case 'crate': this.addCrateData(result, data, coordinates) break @@ -191,6 +203,23 @@ class ClearlyDescribedSummarizer { if (licenses.length) setIfValue(result, 'licensed.declared', SPDX.normalize(licenses.join(' OR '))) } + addCondaData(result, data, coordinates) { + setIfValue(result, 'described.releaseDate', extractDate(get(data, 'releaseDate'))) + setIfValue(result, 'described.urls.download', get(data, 'downloadUrl')) + setIfValue(result, 'described.urls.registry', new URL(`${condaChannels[coordinates.provider]}`).href) + setIfValue(result, 'described.projectWebsite', get(data, 'registryData.channelData.home')) + setIfValue(result, 'licensed.declared', SPDX.normalize(data.declaredLicenses)) + } + + addCondaSrcData(result, data, coordinates) { + setIfValue(result, 'described.releaseDate', extractDate(data.releaseDate)) + setIfValue(result, 'described.urls.download', get(data, 'registryData.channelData.source_url')) + setIfValue(result, 'described.urls.registry', new URL(`${condaChannels[coordinates.provider]}`).href) + setIfValue(result, 'described.projectWebsite', get(data, 'registryData.channelData.home')) + setIfValue(result, 'licensed.declared', SPDX.normalize(data.declaredLicenses)) + } + + addCrateData(result, data, coordinates) { setIfValue(result, 'described.releaseDate', extractDate(get(data, 'registryData.created_at'))) setIfValue(result, 'described.projectWebsite', get(data, 'manifest.homepage')) diff --git a/routes/originConda.js b/routes/originConda.js new file mode 100644 index 000000000..dfa0e7c90 --- /dev/null +++ b/routes/originConda.js @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation and others. Licensed under the MIT license. +// SPDX-License-Identifier: MIT + +const asyncMiddleware = require('../middleware/asyncMiddleware') +const router = require('express').Router() +const requestPromise = require('request-promise-native') +const { uniq } = require('lodash') +const condaChannels = { + 'anaconda-main': 'https://repo.anaconda.com/pkgs/main', + 'anaconda-r': 'https://repo.anaconda.com/pkgs/r', + 'conda-forge': 'https://conda.anaconda.org/conda-forge' +} + +router.get( + '/:name/:channel/revisions', + asyncMiddleware(async (request, response) => { + const { name, channel } = request.params + if (!condaChannels[channel]) { + return response.status(404).send([]) + } + const url = `${condaChannels[channel]}/channeldata.json` + const channelData = await requestPromise({ url, method: 'GET', json: true }) + if (channelData.packages[name]) { + let revisions = [] + for (let subdir of channelData.packages[name].subdirs) { + const repoUrl = `${condaChannels[channel]}/${subdir}/repodata.json` + const repoData = await requestPromise({ url: repoUrl, method: 'GET', json: true }) + if (repoData['packages']) { + Object.entries(repoData['packages']) + .forEach(([, packageData]) => { + if (packageData.name == name) { + revisions.push(`${packageData.version}_${subdir}`) + } + }) + } + if (repoData['packages.conda']) { + Object.entries(repoData['packages.conda']) + .forEach(([, packageData]) => { + if (packageData.name == name) { + revisions.push(`${packageData.version}_${subdir}`) + } + }) + } + } + return response.status(200).send(uniq(revisions)) + } else { + return response.status(404).send([]) + } + }) +) + +router.get( + '/:name/:channel', + asyncMiddleware(async (request, response) => { + const { name, channel } = request.params + if (!condaChannels[channel]) { + return response.status(404).send([]) + } + const url = `${condaChannels[channel]}/channeldata.json` + const channelData = await requestPromise({ url, method: 'GET', json: true }) + let matches = Object.entries(channelData.packages).filter(([packageName,]) => packageName.includes(name)).map( + ([packageName,]) => { return { id: packageName } } + ) + return response.status(200).send(matches) + }) +) + +function setup() { + return router +} + +module.exports = setup \ No newline at end of file diff --git a/schemas/curation-1.0.json b/schemas/curation-1.0.json index 2bd32a9b1..4de658485 100644 --- a/schemas/curation-1.0.json +++ b/schemas/curation-1.0.json @@ -24,6 +24,8 @@ "type": "string", "enum": [ "npm", + "conda", + "condasource", "crate", "git", "maven", @@ -45,8 +47,11 @@ "provider": { "type": "string", "enum": [ + "anaconda-main", + "anaconda-r", "npmjs", "cocoapods", + "conda-forge", "cratesio", "github", "gitlab", diff --git a/schemas/curations-1.0.json b/schemas/curations-1.0.json index d520d53f4..df0788cd3 100644 --- a/schemas/curations-1.0.json +++ b/schemas/curations-1.0.json @@ -26,6 +26,8 @@ "type": "string", "enum": [ "npm", + "conda", + "condasource", "crate", "git", "go", @@ -47,8 +49,11 @@ "provider": { "type": "string", "enum": [ + "anaconda-main", + "anaconda-r", "npmjs", "cocoapods", + "conda-forge", "cratesio", "github", "gitlab", diff --git a/schemas/definition-1.0.json b/schemas/definition-1.0.json index f492f2cd6..e6b7b0814 100644 --- a/schemas/definition-1.0.json +++ b/schemas/definition-1.0.json @@ -32,6 +32,8 @@ "type": { "enum": [ "npm", + "conda", + "condasource", "crate", "git", "maven", @@ -48,8 +50,11 @@ }, "provider": { "enum": [ + "anaconda-main", + "anaconda-r", "npmjs", "cocoapods", + "conda-forge", "cratesio", "github", "gitlab", 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 new file mode 100644 index 000000000..f09fa783e --- /dev/null +++ b/test/business/evidence/sourcearchive-mavencentral-org.apache.httpcomponents-httpcore-4.1.json @@ -0,0 +1,18684 @@ +{ + "clearlydefined": { + "1.3.0": { + "_metadata": { + "type": "clearlydefined", + "url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1", + "fetchedAt": "2022-04-08T16:34:36.129Z", + "links": { + "self": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:clearlydefined:1.3.0", + "type": "resource" + }, + "siblings": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:clearlydefined", + "type": "collection" + } + }, + "schemaVersion": "1.3.0", + "toolVersion": "1.1.0" + }, + "attachments": [ + { + "path": "META-INF/LICENSE.txt", + "token": "59899c6091b540582ed617e8eeaac4919dc985ccfc35459ee9752b699be5205b" + }, + { + "path": "META-INF/NOTICE.txt", + "token": "03b803a07efe116211322efece599d0affaaa88b46f4cdec268744823730b9a4" + } + ], + "summaryInfo": { + "k": 819, + "count": 177, + "hashes": { + "sha1": "1fdf61e5ba87e0e4676c22677e0b2fe3a05c2fd8", + "sha256": "84a272d5ef49e69cfa5b4e6ff96e6c18468d3662d277190cff067e863aa23329" + } + }, + "files": [ + { + "path": "META-INF/LICENSE.txt", + "hashes": { + "sha1": "612ad650a328990087959416a7e2fd160b1daea9", + "sha256": "59899c6091b540582ed617e8eeaac4919dc985ccfc35459ee9752b699be5205b" + } + }, + { + "path": "META-INF/MANIFEST.MF", + "hashes": { + "sha1": "d1efee3a8c440a568c4860ffa6cf4c463ff41b76", + "sha256": "c1a8d39986ee6a0d47bb8e5b3aace6874a4a074477dd991556c370525de445b0" + } + }, + { + "path": "META-INF/NOTICE.txt", + "hashes": { + "sha1": "7a2fa8cdb386ec3ab29c165f9cd21e22177011de", + "sha256": "03b803a07efe116211322efece599d0affaaa88b46f4cdec268744823730b9a4" + } + }, + { + "path": "org/apache/http/ConnectionClosedException.java", + "hashes": { + "sha1": "09d2023caa789224e6a0f9eb5aca902055fb5888", + "sha256": "f099335615f4ecb5dde0bb7a850b763da9d003950cd033e84cc5ea7a9ec243c9" + } + }, + { + "path": "org/apache/http/ConnectionReuseStrategy.java", + "hashes": { + "sha1": "c29a8161e5d618f91b0b1506468a5bf3d9059374", + "sha256": "efd8e67af436d29d9e2feab3ff8fcf19796c13a3be1d2dbc2daf204ee8c8a7a2" + } + }, + { + "path": "org/apache/http/FormattedHeader.java", + "hashes": { + "sha1": "cfa74bb83c4a74c118fa4f892cd0dfb93468264a", + "sha256": "c9b6d84eb8ae3b1a6f4826a5d9b27f810a628af5068a74b76630979d8e6f8312" + } + }, + { + "path": "org/apache/http/Header.java", + "hashes": { + "sha1": "56c8765d09f121242787eff1dcf8e2df6493121f", + "sha256": "101c5dacae9caa4ef13244bebd4c66712f95d26de9407c97d46765bf88b61dbb" + } + }, + { + "path": "org/apache/http/HeaderElement.java", + "hashes": { + "sha1": "5bf3e02851084299a5bdb0e18f95cdb6cc0849a2", + "sha256": "3c72513f693c427ca36790a2c355d6c8227e216f1f7e115bdee3ad6b07cc4363" + } + }, + { + "path": "org/apache/http/HeaderElementIterator.java", + "hashes": { + "sha1": "18bc5ab1639c36c06b55d5a6cce6e70c68a0dbd6", + "sha256": "9558cac9934d2bcc8c0c3a7818d2e864fabfbb7c606f54fd0b1272db68685686" + } + }, + { + "path": "org/apache/http/HeaderIterator.java", + "hashes": { + "sha1": "f0b4b86111a065f1d615f20eebc3eaec9cafb581", + "sha256": "a3d76b8c496e92c8aba37db466a3b4b4507372c6cc8f8239473b11b27725764f" + } + }, + { + "path": "org/apache/http/HttpClientConnection.java", + "hashes": { + "sha1": "63c61b28b460e1a35eee1ecc536112c65dab1290", + "sha256": "ac7c021084f70779053b58a37799f6cfbcfb70f01da01360241e5f12110c8597" + } + }, + { + "path": "org/apache/http/HttpConnection.java", + "hashes": { + "sha1": "9748bf675ec200953817f916f95a5e22fe3387a3", + "sha256": "d9dd8def314026290da3705d0ff47c0fa49ea1fc1968676f1738c9cacc2b8c04" + } + }, + { + "path": "org/apache/http/HttpConnectionMetrics.java", + "hashes": { + "sha1": "6b3d3a427d0cce3386aa855b4e9cf5b33ab57a3e", + "sha256": "c41d3588bcfd86fa0c95abe339fde9d09b41399395bbd3dd86c828b1c11831fe" + } + }, + { + "path": "org/apache/http/HttpEntity.java", + "hashes": { + "sha1": "0925b67f19bf70db3ff07e1653656c709b8bb405", + "sha256": "9a8f48ba253d7d45ae8911515e147ad05a324b719f9a9b5252defb0feeb29dd4" + } + }, + { + "path": "org/apache/http/HttpEntityEnclosingRequest.java", + "hashes": { + "sha1": "890b3c0d39ec5283894e84ae694380b6938bac64", + "sha256": "fc41450a39ddc81e98a9c3d601589bb9eeefb20db756a8509b69610e422a563a" + } + }, + { + "path": "org/apache/http/HttpException.java", + "hashes": { + "sha1": "ec0511e1b1d58b9e61c29b4e8306be5b223c4b6c", + "sha256": "89d0d3f328366bd441ae58d8324b80f1945cd83a723bfded83fd371651829fff" + } + }, + { + "path": "org/apache/http/HttpHeaders.java", + "hashes": { + "sha1": "186aa17acc44cdffb90f518c5c878aa0a1bff0fb", + "sha256": "b2d798e93cf4afa192498c6448a02935c7198d7bfeded3f2fc4d0a4076d6e79a" + } + }, + { + "path": "org/apache/http/HttpHost.java", + "hashes": { + "sha1": "e76f64ae716af51fd1a4c4e3ea4954f86ef45bcf", + "sha256": "46a3fbee9b27f54ce98973a8394127ea830a21e8a9424c2c7b46ddcfb67437dd" + } + }, + { + "path": "org/apache/http/HttpInetConnection.java", + "hashes": { + "sha1": "1b96c2122d5767c6d4d6cb36306c49b300ec819d", + "sha256": "610631fcf15ed211ea95150949a684bff971a6854e3bc7795d53f01ceedba7be" + } + }, + { + "path": "org/apache/http/HttpMessage.java", + "hashes": { + "sha1": "cd15c87564a9b2bc73ac874d6f476a35beb6efb8", + "sha256": "a33820a3a25448673b540838853d74d24f4225631976f870a135f97c9163b15a" + } + }, + { + "path": "org/apache/http/HttpRequest.java", + "hashes": { + "sha1": "451d11743a5e75a64a378039344783d4e80a76ef", + "sha256": "d1b5ee74bf1c7910154269ebd4cd3a77de558a3324f8e026e146a60174b7b4c0" + } + }, + { + "path": "org/apache/http/HttpRequestFactory.java", + "hashes": { + "sha1": "3f86d512781bae2ea157ee456d38ca77b3d77d88", + "sha256": "50d09950f1ac3cf1888c557cbc0f167437c8c41125ab7548d553b0e1980a86f0" + } + }, + { + "path": "org/apache/http/HttpRequestInterceptor.java", + "hashes": { + "sha1": "86457e6bccedca3a5260e4ce4d3930a005952ba2", + "sha256": "d9a5c19dc0f88dd23e9c239e15e3a09f7e02a49c1679ca3726a58f68487341e4" + } + }, + { + "path": "org/apache/http/HttpResponse.java", + "hashes": { + "sha1": "fe4530eb9215e6afeafac9c192ac3c29961acb1d", + "sha256": "237dea689375c813a1d88fafa74a75748db5466cbf655e7985df118b44af685d" + } + }, + { + "path": "org/apache/http/HttpResponseFactory.java", + "hashes": { + "sha1": "2a02ed003c2ee607dfbe5a01294dbc53823d7d5e", + "sha256": "3eb5619b9130d9338d2c531c6b7f5316010246c704a757b7258820928ca8abc8" + } + }, + { + "path": "org/apache/http/HttpResponseInterceptor.java", + "hashes": { + "sha1": "75df9e63113bddd95ea52f9d3c94a8896697b979", + "sha256": "a60aa3a6fc89dd4056d2f5a05ceb2c4eab297188d4e374562c2f450b6df7da54" + } + }, + { + "path": "org/apache/http/HttpServerConnection.java", + "hashes": { + "sha1": "8495796dee60aef41a58627dd65999ab6a8e0289", + "sha256": "8410bd782a9a6df6196674d18d427769556079ce1be2c488c0cf1d950364884b" + } + }, + { + "path": "org/apache/http/HttpStatus.java", + "hashes": { + "sha1": "265cf51183216b610b661e9dd68603cd7860846f", + "sha256": "8e354585fccb6df1dab894d75afda75c407438f0a9d646b1ac157ff1a8351277" + } + }, + { + "path": "org/apache/http/HttpVersion.java", + "hashes": { + "sha1": "aa0d140a334b5d7f5291e4adc86efd2ce63408d0", + "sha256": "5a0d5d90e4dffc6be413132699a9eced69daa330e64f53cac16f15496c049175" + } + }, + { + "path": "org/apache/http/MalformedChunkCodingException.java", + "hashes": { + "sha1": "8599f21cd854fffa1a6759f66e0fa116fea958a7", + "sha256": "66c1b594f0ac8a172db0edeacbf6ab281084e12a75862163830dc9327e49cf9f" + } + }, + { + "path": "org/apache/http/MethodNotSupportedException.java", + "hashes": { + "sha1": "0f36b2d46981f6d9125bef485ca868646ff2cbea", + "sha256": "c0d660cd20afb844e7b698bc1a88ceb3b6d0119f16dbd329c8217ef2b79c46eb" + } + }, + { + "path": "org/apache/http/NameValuePair.java", + "hashes": { + "sha1": "82c2009c5bfb0cec1431e44e615f841bd18cd07e", + "sha256": "b5f724cebc0bf4cb7a0ce2a2eef0ca2c3cb420762bc62cf1d6fe9efa7e40829f" + } + }, + { + "path": "org/apache/http/NoHttpResponseException.java", + "hashes": { + "sha1": "71292280cb85fbb291626b02e3bd5291b5eb6d45", + "sha256": "08252fc7d90b3e558d8005ce580f10db5a45c2e1dc73188fb6bcb9989842ec28" + } + }, + { + "path": "org/apache/http/ParseException.java", + "hashes": { + "sha1": "7af794c44df567bb83e64c13d537c97077962ed3", + "sha256": "9f9be341fe00e8c5ae5869a835bfb2809ff1483daefda73ce0b8edf4d2ff5433" + } + }, + { + "path": "org/apache/http/ProtocolException.java", + "hashes": { + "sha1": "f81e9b126889e99227e1c91327c23dbaa8693c42", + "sha256": "3693f68bdd62477c0dce48e7b564c164e4150bf6d60ee3835164f6287ca3d077" + } + }, + { + "path": "org/apache/http/ProtocolVersion.java", + "hashes": { + "sha1": "f0d6e0dc2c49eb902354ebc07a94a315866fecac", + "sha256": "4a71bf24e1a1d4797350c7b14320f158aaebef77d7b757ad6c1942a0a9314f5e" + } + }, + { + "path": "org/apache/http/ReasonPhraseCatalog.java", + "hashes": { + "sha1": "b931f4350037937832a7bd03b9765b600583d263", + "sha256": "84a156582b653bb0b6db10cb771aa4c390d88432f494dcbddf23141d5ceb9ed0" + } + }, + { + "path": "org/apache/http/RequestLine.java", + "hashes": { + "sha1": "b39362f01a7dc2246c3ac86a0d9b8f8dd1118d0b", + "sha256": "482f9d0d9f1263df5f6111e104dc7e1a370dd469070fd4620596c8fee4572888" + } + }, + { + "path": "org/apache/http/StatusLine.java", + "hashes": { + "sha1": "582eb19dece77407f39a0efc8cde483fcb12ee4e", + "sha256": "411a7b1aac57e7c999faee2e6a0a99843d073bf386fcae014f4667577eabd498" + } + }, + { + "path": "org/apache/http/TokenIterator.java", + "hashes": { + "sha1": "f3b13f34a13778b0a11bb4e35620ab952e8eccfe", + "sha256": "16adf73c9103e3578a42ec1ca8544539c1ccfcfb96bcaa9ebbf9bed8382f1580" + } + }, + { + "path": "org/apache/http/TruncatedChunkException.java", + "hashes": { + "sha1": "b891629e7af31971f2dd97ef03c127e2cce37a67", + "sha256": "466f09c1309f6ff8a30d884e71dd55060b65513d149ef331a0862044e020bd3a" + } + }, + { + "path": "org/apache/http/UnsupportedHttpVersionException.java", + "hashes": { + "sha1": "3241e436404a7fcf713c4dc4edeed4732b7d46a0", + "sha256": "accbbf81f70ed2018e9ab535b544a3510e4454aed3e3c227d31f4f398cd3f777" + } + }, + { + "path": "org/apache/http/entity/AbstractHttpEntity.java", + "hashes": { + "sha1": "c856d7f8e0c40b3363d5932c37ef4c25364eb9e1", + "sha256": "4973bc74482d30f303136c3abcec3a59c9dbafe336d9733d01c8b18fd445a2c5" + } + }, + { + "path": "org/apache/http/entity/BasicHttpEntity.java", + "hashes": { + "sha1": "dddf065f662285729466b433a6d606f39985a4dc", + "sha256": "23931138016cc0ecaa64337e2fee29922efcc2d78e980b934d6684c3879b34c1" + } + }, + { + "path": "org/apache/http/entity/BufferedHttpEntity.java", + "hashes": { + "sha1": "f769eb9ff59cd0a50295e2c1426c97c40780a703", + "sha256": "fbcb851afbbf9e502170611b866b2387332b7a4db4565148e09d30d67feacc30" + } + }, + { + "path": "org/apache/http/entity/ByteArrayEntity.java", + "hashes": { + "sha1": "8eef873c4e188be7b4096e70f9942d9eb1874a9e", + "sha256": "61b35bf7103817ba873e697e7929bd6230df187eaca4a6f7a03200b6c44f7468" + } + }, + { + "path": "org/apache/http/entity/ContentLengthStrategy.java", + "hashes": { + "sha1": "49020f1bf8af79239880a4f8b41502633d992f16", + "sha256": "78e6de9e6dbb6d18995b94facef6709fdcc1fb4b236a15e07b001589616533ad" + } + }, + { + "path": "org/apache/http/entity/ContentProducer.java", + "hashes": { + "sha1": "221ae577191d451997785b76dc82e331fd0243b0", + "sha256": "5d00c59332254c9a2d127228b665ed04811c5e95af4604b615cd7db3878d5769" + } + }, + { + "path": "org/apache/http/entity/EntityTemplate.java", + "hashes": { + "sha1": "af3c4f99a0b2bf3c96ec004028801ed0ba13b296", + "sha256": "9078215e94dd01b719cf5011400cb4d76767a9064e0be2bf11fed1a485bee1db" + } + }, + { + "path": "org/apache/http/entity/FileEntity.java", + "hashes": { + "sha1": "9488113243f28ff3ebba616154fea619359f7094", + "sha256": "fc57263c2eca1a2dae09a2846b40eb8035ae1d68514bc7c38591bb2bd36824da" + } + }, + { + "path": "org/apache/http/entity/HttpEntityWrapper.java", + "hashes": { + "sha1": "0df036cd1832cc65992f244f8e1b88d4bb43a0cc", + "sha256": "ae7839045c3f40e6d22cd0ff6cc60a938c4c45095a8600fa69f1bca3ad47acb9" + } + }, + { + "path": "org/apache/http/entity/InputStreamEntity.java", + "hashes": { + "sha1": "f49bfca481c386986b541f7654c190645219f4b6", + "sha256": "ed3f09fcec47927f2ca4ad075de251c4e3721366365fa2536fd02fc8ebf240d2" + } + }, + { + "path": "org/apache/http/entity/SerializableEntity.java", + "hashes": { + "sha1": "01bfbe979d8fe1045965f7eec504b2c17abd994a", + "sha256": "ed9e4157d8e5797ff4985173d346288caaecd16ea20b975f0d4ce98e35af0aa3" + } + }, + { + "path": "org/apache/http/entity/StringEntity.java", + "hashes": { + "sha1": "2f38369ca2e14d71a8e89db4821776cecd582c53", + "sha256": "0df98c4e0f2895ca4b314db65578b84922a0fcad4e713917b13f4bd6fac4509a" + } + }, + { + "path": "org/apache/http/entity/package.html", + "hashes": { + "sha1": "c266c5b824b3e75e485ce45209c2e0131c24c8e6", + "sha256": "b22ab9e8dfef76a655d7e5e75b06c1857c800e6fd3e7bc96f25fd2ee6101df12" + } + }, + { + "path": "org/apache/http/impl/AbstractHttpClientConnection.java", + "hashes": { + "sha1": "60c9506d84e43a54cb35b0131fcef2d561b65a34", + "sha256": "fd339b1b7bb4bcb00b43f9c7ebc73c0f233a2072f6dbaf129a6eb8a68aa17e90" + } + }, + { + "path": "org/apache/http/impl/AbstractHttpServerConnection.java", + "hashes": { + "sha1": "12a96894adb6367732995927f14edda5a261b9cb", + "sha256": "cb8bd21eb150495500359f2319678c7c7e449f95084a8d316167883711107815" + } + }, + { + "path": "org/apache/http/impl/DefaultConnectionReuseStrategy.java", + "hashes": { + "sha1": "b235c292e889109c039399a435fb007f5a0fc5af", + "sha256": "8a0e09f936ee1e3d0001620474ef87020acaafdc0ee6f57f7258908acd379690" + } + }, + { + "path": "org/apache/http/impl/DefaultHttpClientConnection.java", + "hashes": { + "sha1": "b0fe5863c1e98b158fbd36242f68fa2c6a6341e2", + "sha256": "b1a03e5dc39f60d137bc6405f0e470a6dc4afffacb91a023fadee4ecc847dd8a" + } + }, + { + "path": "org/apache/http/impl/DefaultHttpRequestFactory.java", + "hashes": { + "sha1": "4fef9ad94732afc71f87f012dfbb438f58b23047", + "sha256": "efbda5252580c63f7961e01c0a1191d534bda5ed397396a4343c94da81df38b3" + } + }, + { + "path": "org/apache/http/impl/DefaultHttpResponseFactory.java", + "hashes": { + "sha1": "769a10254111b78447ed43676e302f3bbd1a96f2", + "sha256": "6549ac24f24fd1101fe3fe555217fafcdde22029a4d023085d9ede9530120881" + } + }, + { + "path": "org/apache/http/impl/DefaultHttpServerConnection.java", + "hashes": { + "sha1": "efeed4107cad605354ce5e6d18d4185dd502eb1c", + "sha256": "6315cbaf09f47fd666c7305f5813e3097c7b9ac62e26727a350f08858fbeda2b" + } + }, + { + "path": "org/apache/http/impl/EnglishReasonPhraseCatalog.java", + "hashes": { + "sha1": "2101d57a0960b69fb2d67a916de7a99185ccd8b7", + "sha256": "125791049bb84bf58756e2115cd32ac8cfcafe45bb49adf486dda6d72eac6d0d" + } + }, + { + "path": "org/apache/http/impl/HttpConnectionMetricsImpl.java", + "hashes": { + "sha1": "bbd3be16c20910d708f6272f5a082fc45b400b8f", + "sha256": "bb23c2ed91cdbf0df7720be5cff437d83f07e361910dbf8bcf1b80b68eaedadc" + } + }, + { + "path": "org/apache/http/impl/NoConnectionReuseStrategy.java", + "hashes": { + "sha1": "2e88be3e8bd03bd318b54e70f12bd6d3e8cc8771", + "sha256": "91aa58c3469e9c207510c9b18a9390f002e18fa6888cd3bb5b1190cbb3bd7289" + } + }, + { + "path": "org/apache/http/impl/SocketHttpClientConnection.java", + "hashes": { + "sha1": "1112ab430be5d25afcf611678425d6e033f11233", + "sha256": "85ddaa12b1036d3fc08542f3d9c9e1f5002793e0e70d8e28cf037feec89bace7" + } + }, + { + "path": "org/apache/http/impl/SocketHttpServerConnection.java", + "hashes": { + "sha1": "63da5106c1072a70e8fe170edf5bcfbfc9784a0b", + "sha256": "79351941f73641aed3a6b92286845ed9670d7de28a9979bb0a616ee55f95e965" + } + }, + { + "path": "org/apache/http/impl/entity/EntityDeserializer.java", + "hashes": { + "sha1": "12e8954a96ecf13892b7b8c6727479f9a5173c5b", + "sha256": "1df8c3a40c50a7e5bb5ab17f53b8acb21f313811a5362585845ad8e590d491bf" + } + }, + { + "path": "org/apache/http/impl/entity/EntitySerializer.java", + "hashes": { + "sha1": "c4635ad33e925d343710055a86b7338e30356edc", + "sha256": "0f38fbfc2cd314295e953a2dc21eb7d6c0dc94190df1585d780286b4e9582ffd" + } + }, + { + "path": "org/apache/http/impl/entity/LaxContentLengthStrategy.java", + "hashes": { + "sha1": "5371bdee192f768887308da504f50793752d58b3", + "sha256": "e5a61377efc414f6e1be01d8a2c7799e56be3e1f6f2fe6a0be8216ee2f100099" + } + }, + { + "path": "org/apache/http/impl/entity/StrictContentLengthStrategy.java", + "hashes": { + "sha1": "03329a1d64525f4bee1b2e1f6aa6289388672e01", + "sha256": "645d792f910516795e6c6472966484651fd127484cde7fa546a067a31da6a335" + } + }, + { + "path": "org/apache/http/impl/entity/package.html", + "hashes": { + "sha1": "260b6466229a20b6758971d4ce808578f023ec55", + "sha256": "27570e118d8d0d806aacfb3f2a02af28f00b1bade620f98fb03cd5996b8b8f21" + } + }, + { + "path": "org/apache/http/impl/io/AbstractMessageParser.java", + "hashes": { + "sha1": "bcce8bd96a89c8613e0b76151b62bdd94f6646cf", + "sha256": "44b09128fe6ff5a6487c02aff0be592782e034fdabb3096c03bfbcee79ee2692" + } + }, + { + "path": "org/apache/http/impl/io/AbstractMessageWriter.java", + "hashes": { + "sha1": "6f3cddc463dcb271dd50a8f89acc6875e18c78d8", + "sha256": "dc9e25d003c2218db0e855a9ddd4616ab1e3219108f09912c48475a45e05ef40" + } + }, + { + "path": "org/apache/http/impl/io/AbstractSessionInputBuffer.java", + "hashes": { + "sha1": "280d25c38fcd782d5712f50812ac7048ee00e460", + "sha256": "fbbc984818b04736b574c7b7c41f9c977e3b29de4aea2e1a545cda05dcd0fe8a" + } + }, + { + "path": "org/apache/http/impl/io/AbstractSessionOutputBuffer.java", + "hashes": { + "sha1": "155392d94dbf53e4049eaaf30bdf5ec193dba293", + "sha256": "c072a70ccb3d602dbda20f7a4eca44bbce10e0051fdc9d013917b793a783ecec" + } + }, + { + "path": "org/apache/http/impl/io/ChunkedInputStream.java", + "hashes": { + "sha1": "91043294ca1b4fb0ed29d0922306e8b81f575c42", + "sha256": "0e02da42df74a94ef0da912961f281a860675caf04d9f83ab70dbedee4cf00d9" + } + }, + { + "path": "org/apache/http/impl/io/ChunkedOutputStream.java", + "hashes": { + "sha1": "66c8fe3947e0be3318383470912e99f7607ee97b", + "sha256": "645357ff47229298125f4027c1177db707842faa5c60f9a1985b6608911997f7" + } + }, + { + "path": "org/apache/http/impl/io/ContentLengthInputStream.java", + "hashes": { + "sha1": "0b09d7e84096c5a55272fec7dc535b974ad74499", + "sha256": "cf235ad44a169cb9b40a18ad9e3e203fb8e5697676bc57e6835a828029a29360" + } + }, + { + "path": "org/apache/http/impl/io/ContentLengthOutputStream.java", + "hashes": { + "sha1": "1f37392e84a4484632e54df1c3b298d2090ddffd", + "sha256": "3b613eb6a005542703f75ce06a7a780413381726cd384f8d18bfb44e7f152e54" + } + }, + { + "path": "org/apache/http/impl/io/HttpRequestParser.java", + "hashes": { + "sha1": "778c9b6c2006b609af7ca049cb97be3bb9aa1045", + "sha256": "2dd797b2a47c2ca998c3599bce364d9e3ac63b5e4c46b6b7492d43fd9d9f1a8c" + } + }, + { + "path": "org/apache/http/impl/io/HttpRequestWriter.java", + "hashes": { + "sha1": "4aa8cc0f3d6d6f8e2276aecb5155b889ad14e08b", + "sha256": "f08077f013924642aaf4142f34799102f8606a08c331c78a02e4b0c376a090c0" + } + }, + { + "path": "org/apache/http/impl/io/HttpResponseParser.java", + "hashes": { + "sha1": "63eb075d35ff008367c00356ba4204c6bcab33c1", + "sha256": "68afb93dc6e5a049d76d8cc45b9f10c478757388a7ad3b1163c5d18aad7e68f3" + } + }, + { + "path": "org/apache/http/impl/io/HttpResponseWriter.java", + "hashes": { + "sha1": "01b458af1e0e94a1bb43fa235ae65a74aab35521", + "sha256": "44c9188ec37f89bb236f81ad666ae35ae8722f95a3eda20b37757c8400c0dfcf" + } + }, + { + "path": "org/apache/http/impl/io/HttpTransportMetricsImpl.java", + "hashes": { + "sha1": "964bc9544d21664e30a4e4f3a1e65be06774e3ed", + "sha256": "11613c88aaf4bec726b63204d7e4d148ea7cf3ae222d48f0fc44028726977d7f" + } + }, + { + "path": "org/apache/http/impl/io/IdentityInputStream.java", + "hashes": { + "sha1": "6aad7307fa4218755f9bc6b4526d5b53458b3408", + "sha256": "31e7772e1b64c72144b10f6d1bd82186b8e88efccc8d23b8a65c8a974d8d0232" + } + }, + { + "path": "org/apache/http/impl/io/IdentityOutputStream.java", + "hashes": { + "sha1": "9371bad68c344a7b956232d967cb1e6ea8d4b14b", + "sha256": "839c8403418fe23528458a0b93a25f132b3a0ed8c3379b2564ac2e0ee774f4d2" + } + }, + { + "path": "org/apache/http/impl/io/SocketInputBuffer.java", + "hashes": { + "sha1": "ed5a7f617e2bd32866f075fdde93993d3ea7b8c7", + "sha256": "bac1089de574289706c37ee67400093cbcba79405c8343626e7716c64b59ded4" + } + }, + { + "path": "org/apache/http/impl/io/SocketOutputBuffer.java", + "hashes": { + "sha1": "4c8bec5f77362b6053748a8b27fc868b578f8419", + "sha256": "a509d709f958e8930e8961845bd7472dfa4afabe8c5d963597fe78fb02026d2b" + } + }, + { + "path": "org/apache/http/impl/io/package.html", + "hashes": { + "sha1": "2773d92f35d6b1cbd88d221537cdd7e3480b44d4", + "sha256": "b87368cd67f0eebb8c3389296fa7cfa24d6dc7811d28d7c4738252442e7c115b" + } + }, + { + "path": "org/apache/http/impl/package.html", + "hashes": { + "sha1": "9083591a4633127045b16597b3d84a003bd8b01c", + "sha256": "0dc0c227baf5cbacd3c8d6647bdc1d14c3bfd0da51b314a3f1ffdb9c48ac8ab9" + } + }, + { + "path": "org/apache/http/io/BufferInfo.java", + "hashes": { + "sha1": "a451af2065ac796e9de471a8ac53034436034cb7", + "sha256": "af62facfbe355811640ec108d26807e9a921d60e5765bcac649aa61ab6ab0b54" + } + }, + { + "path": "org/apache/http/io/EofSensor.java", + "hashes": { + "sha1": "bde59919372a2d411f44e64e41dc46765b0255a3", + "sha256": "239cec87cb66f3e92f7c92cfcfaaf5010b09025d5c511ce2e089aebdcc2a3ad1" + } + }, + { + "path": "org/apache/http/io/HttpMessageParser.java", + "hashes": { + "sha1": "a0d773abf026d0cf22da1ea6d4b70d54c81af45d", + "sha256": "f041200d426d06451f81ce0e6ae627c6cb5ccb5dd36fd9373a7cc8b6df38279c" + } + }, + { + "path": "org/apache/http/io/HttpMessageWriter.java", + "hashes": { + "sha1": "acc7b93dd94582725212afc4a3fec8595d15b359", + "sha256": "c10865e702feb320b68286f834f1ee549c70a6449d38aa84e6e6d029d0fc9786" + } + }, + { + "path": "org/apache/http/io/HttpTransportMetrics.java", + "hashes": { + "sha1": "dda133066859bfcdef3cb3969660e376a38b9102", + "sha256": "ba16aa1ffd17afc3d8e959e0f30d6366fa5e6de9ac1a14aedcbaa26b652c355b" + } + }, + { + "path": "org/apache/http/io/SessionInputBuffer.java", + "hashes": { + "sha1": "bbd5dea1214626b80f4ff7d189b53323b0ba4f47", + "sha256": "6ab9d9204ff4ec7cc2eb883d61637486519e024385417f6d28f09b4b2831cd22" + } + }, + { + "path": "org/apache/http/io/SessionOutputBuffer.java", + "hashes": { + "sha1": "943960df12585acaa25424d19a76b824cfac6f53", + "sha256": "bdeb303c6155621582b986dd76cad8cc3e5191f9b607cab439503293f40ef0e0" + } + }, + { + "path": "org/apache/http/io/package.html", + "hashes": { + "sha1": "8b6848fb2b344845cc90d4bb6efe3a2b1041da04", + "sha256": "8baf127027fd109a7447e45726fcda44edc3e9e81c0717396e5c048cb7beab7d" + } + }, + { + "path": "org/apache/http/message/AbstractHttpMessage.java", + "hashes": { + "sha1": "9a42d7d775119bfd8b7c8e2612003071fb998db9", + "sha256": "a046970081199a56bda5da47dbaf2062a2ed789038095e0c04ac476188a2dedc" + } + }, + { + "path": "org/apache/http/message/BasicHeader.java", + "hashes": { + "sha1": "14cb1671a2beefd0a2cd15cae74f68f6b2f16d0c", + "sha256": "bf49a25695873a27916507927eb6207bc6e157f690694e9956cd97007bb3d9ee" + } + }, + { + "path": "org/apache/http/message/BasicHeaderElement.java", + "hashes": { + "sha1": "a2fb9cb773ca7123f9a216c07985036e23354c60", + "sha256": "10a4a1ae058d83a35779aeecbc1b446b41392da3e31d426d88a831ac4984694a" + } + }, + { + "path": "org/apache/http/message/BasicHeaderElementIterator.java", + "hashes": { + "sha1": "ea37d89184c7b66bc590efa97d5a011251ded313", + "sha256": "678acd955f3630bee143891e92e967308388c05aedda7ecb75a638cb925595eb" + } + }, + { + "path": "org/apache/http/message/BasicHeaderIterator.java", + "hashes": { + "sha1": "2e5d2a6c8c23c9445f4cf0ad8b19552f0f2ba841", + "sha256": "6e4f2bef011a99d28e147e3e1470f7cc5c04736f7b8e76c13a9e1dc24ae1affa" + } + }, + { + "path": "org/apache/http/message/BasicHeaderValueFormatter.java", + "hashes": { + "sha1": "a5710d3d1ae01960607981c7d0d1b3724770c8f5", + "sha256": "1994c47ce2ca01f7ac5233de27db3d44acdc55886a9bf9c26794d766e55d0f96" + } + }, + { + "path": "org/apache/http/message/BasicHeaderValueParser.java", + "hashes": { + "sha1": "73b5947c03c8f0c36bac961b4bf8e24a5d244016", + "sha256": "6c9d52aeae1f2925891e995e6b960f58cbe9e8357295867fce3d0d92db8781d9" + } + }, + { + "path": "org/apache/http/message/BasicHttpEntityEnclosingRequest.java", + "hashes": { + "sha1": "2661e29083919cc00b79bdb4bf8ffeef92541bd3", + "sha256": "3202e673da8530d085e73ec6f9649118308be544e2a2228e49364c7c54e44ef3" + } + }, + { + "path": "org/apache/http/message/BasicHttpRequest.java", + "hashes": { + "sha1": "e2a49cab5e94ff54165ac5a69cb56b614cd0a80d", + "sha256": "61901d7802c9e6668011f1ef587ce8e9dc4be4293349a47709ae8a6f00b2c051" + } + }, + { + "path": "org/apache/http/message/BasicHttpResponse.java", + "hashes": { + "sha1": "0e0c69290347151e1f21f20f0bfc144de5864d14", + "sha256": "ec41a4c9dd0d2e5dc0b29cba8bcc3ff09cda55e95290c7afc24bf1c02e34a0f8" + } + }, + { + "path": "org/apache/http/message/BasicLineFormatter.java", + "hashes": { + "sha1": "8afa64fea967817fb1537b676a63b411dcd31295", + "sha256": "4dfe11315633be6c1a3b9ac375dfd6c15a78df2c248214cd06152e067036b046" + } + }, + { + "path": "org/apache/http/message/BasicLineParser.java", + "hashes": { + "sha1": "f76e18fc4371ed0dd4570886cc1e8cb415f518e5", + "sha256": "3c706891b57c4fe02d93db8db9372c56061fbf6789cf6695a7f73f6b79594cf4" + } + }, + { + "path": "org/apache/http/message/BasicListHeaderIterator.java", + "hashes": { + "sha1": "5b6015f6caa0b22fabbff1119846b708b1e7d4e3", + "sha256": "8bcc36dd024a3c81a7c7e18d5b5e9354eea8828ea83fe688cc4e841b10869c58" + } + }, + { + "path": "org/apache/http/message/BasicNameValuePair.java", + "hashes": { + "sha1": "d524a85abd584cda752dfb8fd12594adf1c9ef06", + "sha256": "53a8d518947f9bc30fda99d17f4e297d7de6089601f2be6add5fc927ff8fe3ff" + } + }, + { + "path": "org/apache/http/message/BasicRequestLine.java", + "hashes": { + "sha1": "202e265c0fba335068e4af1d50a06e9294a40698", + "sha256": "499e922c6e19e6c1c212ad91482eb6909c6df633a2bc8aff01a06df4c7d05b35" + } + }, + { + "path": "org/apache/http/message/BasicStatusLine.java", + "hashes": { + "sha1": "5a5893ea5dc10959b978e928e0f14d49ac57f6d2", + "sha256": "fa0cdeea5593fac415b64969f570908ca0ca188688c7d2d2ea4610b15bc70b21" + } + }, + { + "path": "org/apache/http/message/BasicTokenIterator.java", + "hashes": { + "sha1": "6482ffea3c6484bbb71a6690dd53a55b2bf578ef", + "sha256": "2893fecc5242f4fb64aaea246c27dcc6d76d4c8e04798abe4d999556e88109ef" + } + }, + { + "path": "org/apache/http/message/BufferedHeader.java", + "hashes": { + "sha1": "9f34be4657c037f393ab1e97483cdcdd9e0595f6", + "sha256": "dc9909adf83d701d378f8c575314a1ca64c7f7ae057863092f38b81069f42202" + } + }, + { + "path": "org/apache/http/message/HeaderGroup.java", + "hashes": { + "sha1": "dc2da1cbdc3d57fd190b9aea755d4de5efe3b1c7", + "sha256": "13c930e0c47cf54855ca8d8aef41d5f3ee20c6bc39f6e6ad65296253e4bdf303" + } + }, + { + "path": "org/apache/http/message/HeaderValueFormatter.java", + "hashes": { + "sha1": "04a0ca72a8cdba1652da3ebea664208f181bc29d", + "sha256": "4bebb7d1dda14cedd3648d9e89ad1d62df79cda54e220265496c6668f2d083fa" + } + }, + { + "path": "org/apache/http/message/HeaderValueParser.java", + "hashes": { + "sha1": "f38659f0b25e537cd16485fce1154c3d0459c1e3", + "sha256": "d43303a845a44817ce6b4713a11132a68008b14f13a32e7e705a6c4b2b2e6074" + } + }, + { + "path": "org/apache/http/message/LineFormatter.java", + "hashes": { + "sha1": "c3cf87e17dd359d38088d8460f35cda7a8138257", + "sha256": "532ccfe6541ba8a5d1b385f033db37a1497f171d1a2448ce035f878b05c3c5bd" + } + }, + { + "path": "org/apache/http/message/LineParser.java", + "hashes": { + "sha1": "db4f1946169f89317a6bfd7e44cceb4f84491cb0", + "sha256": "10d4c06250b2f7358514df0e697092859dc775a76891d8b5d912fbf8695ab206" + } + }, + { + "path": "org/apache/http/message/ParserCursor.java", + "hashes": { + "sha1": "63e7107771baa81115c9e88a8ebc5b0d98117f4b", + "sha256": "dc2b1b73794cbeb57160cc9d1601a862a783ad882ca7815af1c070397ea3e9a1" + } + }, + { + "path": "org/apache/http/message/package.html", + "hashes": { + "sha1": "2b0f5e66f409b5f9206672efea2e8cc1ee1a0f4f", + "sha256": "96635bfcda2f7f1d3cf880965eea48cad5ad1e8dd14279160f73a98b0f4e3e64" + } + }, + { + "path": "org/apache/http/package.html", + "hashes": { + "sha1": "328c66b3236a7defc476222e61506f028f361bc4", + "sha256": "f3183f4dc94a4794db65f16c1be324e142bce7ac210af49ebc8f754c23f2a7ea" + } + }, + { + "path": "org/apache/http/params/AbstractHttpParams.java", + "hashes": { + "sha1": "0401305548fb392a2de0f99627cef7fee68cf6cb", + "sha256": "cbf2d0c536f162cc0e2a73f920601f3a1dd7ebc067c9bc37c89d237075ac6ec2" + } + }, + { + "path": "org/apache/http/params/BasicHttpParams.java", + "hashes": { + "sha1": "6c8c7474d6497cb9099e78cbf00b664b63d81c1d", + "sha256": "2c00d90d9fe96d1f1d7c97ad06d4158c09fd802841ea9aea647bf90dd4a490ae" + } + }, + { + "path": "org/apache/http/params/CoreConnectionPNames.java", + "hashes": { + "sha1": "4fcf871dd397743bacc65231444ceb30270b90a8", + "sha256": "fd63c3e365fbd73b6adf379a98e5f987e3a87acb6106bc6e667dcbb4e5242800" + } + }, + { + "path": "org/apache/http/params/CoreProtocolPNames.java", + "hashes": { + "sha1": "004b8802e57c03ab1b5329524b6e89e7898eb7e7", + "sha256": "8233c020c99b5b15bfc06f6ef97a2c325ace82f935002045c4099d65af87e762" + } + }, + { + "path": "org/apache/http/params/DefaultedHttpParams.java", + "hashes": { + "sha1": "22df83abee8830c832d4af4892b08bb6ae570fc5", + "sha256": "9407cdb0030602c84d4502db4cac36b7e58dbf88804b9ea71d8c63bfd6cc9149" + } + }, + { + "path": "org/apache/http/params/HttpAbstractParamBean.java", + "hashes": { + "sha1": "cbeac10e6fa8cc1ab09bdbee3e9b0a34b0eda3a1", + "sha256": "6c78da7bd2e58a6341d9327d59f0d110de29ca7944c875f31818338c8e7d4144" + } + }, + { + "path": "org/apache/http/params/HttpConnectionParamBean.java", + "hashes": { + "sha1": "82bf253bcd11121d5174b1cafa7fcbc1f83e5681", + "sha256": "efbb66d76226c9103d0230406fe879f65b384911561b678261d9021edab39b97" + } + }, + { + "path": "org/apache/http/params/HttpConnectionParams.java", + "hashes": { + "sha1": "7dbff412260f193b78ee012d4cb60faf27650c33", + "sha256": "43dc7643875fe47beccb8584803d14a29bf7c6092c9dd90a2c57f258faf3efb2" + } + }, + { + "path": "org/apache/http/params/HttpParams.java", + "hashes": { + "sha1": "b120d3eb0d015196a05639f57fa255477ecc4e6f", + "sha256": "d18dfb7ec3ee04818b3733be46172f7cfb0c2bb94362665d0d2984c9d51c8c63" + } + }, + { + "path": "org/apache/http/params/HttpProtocolParamBean.java", + "hashes": { + "sha1": "1eb1027b36e512b3d26a9c7eae61cdcb88ceac0d", + "sha256": "823a4db74e1dd7c6082577662859d2378bd9071b8c6f1501b8601302962e7377" + } + }, + { + "path": "org/apache/http/params/HttpProtocolParams.java", + "hashes": { + "sha1": "388905a2839b997ceae198b0929fa716d36f27d4", + "sha256": "3e0e6490a048051a8ad40f253a6fd57e92f995d8112e0137f50c9d84108c0bc6" + } + }, + { + "path": "org/apache/http/params/SyncBasicHttpParams.java", + "hashes": { + "sha1": "abd359da40b7f4a818cddcdb84d4dbef5d89f6c8", + "sha256": "641f1fa83e3bc01525ecf0e0dc05040d1c6eec5ea0f7e47463fa2f15daa3fa13" + } + }, + { + "path": "org/apache/http/params/package.html", + "hashes": { + "sha1": "d9d41dc12a6ba536473f59b602648d028fc4d354", + "sha256": "191cbd4e0fb162cae7ffc28bd0d0bcc371df34ecf05138bfbd4689190ff868ca" + } + }, + { + "path": "org/apache/http/protocol/BasicHttpContext.java", + "hashes": { + "sha1": "c4624809af7d770dd989d0eb639dada0fda7f769", + "sha256": "929e4a95e36c0c5d204a7bde80cc3281a5c4767339d407d644fd3c9b64555af5" + } + }, + { + "path": "org/apache/http/protocol/BasicHttpProcessor.java", + "hashes": { + "sha1": "0c19c07eb2071fe7e620461d28f3b71fbdbdaacb", + "sha256": "3bd4fa8860f4a20930ea39d9950a1464ef4421cb758ecb62422966b03277a61d" + } + }, + { + "path": "org/apache/http/protocol/DefaultedHttpContext.java", + "hashes": { + "sha1": "515dc3d534b188cfa81d040576f88d87fadeb0a7", + "sha256": "ea57f0cedc41ad08ddfdfbd241652644ebb49dfd496d78c82d76ee522dd034de" + } + }, + { + "path": "org/apache/http/protocol/ExecutionContext.java", + "hashes": { + "sha1": "6511c78611616b08e74f1629e882d868e72f9543", + "sha256": "12fb56b68fc221bdc9bc5e8f62d5bf522a6dff5f6cb99a3f031a9313d054cf78" + } + }, + { + "path": "org/apache/http/protocol/HTTP.java", + "hashes": { + "sha1": "ef0615a0ab8fc87942ca79705524791bad5625f5", + "sha256": "fef037ff4122ba1325e14bc383eec00534dfda519a31ca0fb2682b490dbdbc3e" + } + }, + { + "path": "org/apache/http/protocol/HttpContext.java", + "hashes": { + "sha1": "12b772e88ff602bc87a8f9ed275c1b77858ce1a0", + "sha256": "be9e5480412f49c366161c33d1f48eacaa375f0fea0cc5f33e38f1b96fca689d" + } + }, + { + "path": "org/apache/http/protocol/HttpDateGenerator.java", + "hashes": { + "sha1": "a45cca3585a4fbb49a5857946926e8913a2ac24f", + "sha256": "be3380be989330c99239978eeed2964773bad231368faa005b6f8c2f77767a49" + } + }, + { + "path": "org/apache/http/protocol/HttpExpectationVerifier.java", + "hashes": { + "sha1": "6616a01ccdf1b6d3868b086296181ff47416574a", + "sha256": "7fcb43a27f74d9340f4ed3503cc275ea35a1216ed83cfb8dd76913ea9420ba25" + } + }, + { + "path": "org/apache/http/protocol/HttpProcessor.java", + "hashes": { + "sha1": "4170b9a6ca01df2ca720d5d5a7147fd326aaed0c", + "sha256": "40f6fda3d3cc5360a392108edf012681b8bc8b9d3728397a1d620deb05ad6424" + } + }, + { + "path": "org/apache/http/protocol/HttpRequestExecutor.java", + "hashes": { + "sha1": "0ac2362c432520beabb6a4f0f0adb71eea3efb48", + "sha256": "e456d7981602be43c863080f370e60c9389c2a275b1c31b5e5b8ce17cb43e0be" + } + }, + { + "path": "org/apache/http/protocol/HttpRequestHandler.java", + "hashes": { + "sha1": "54402e85c90ae80c183640cdb675f61e2a508d7d", + "sha256": "7652c1b5205a1e37300a6f22700b4effb5e4da08d2f51d6a91e1a4daa32e507d" + } + }, + { + "path": "org/apache/http/protocol/HttpRequestHandlerRegistry.java", + "hashes": { + "sha1": "788980988e1cefac802e1fb84b84530e13cb9d32", + "sha256": "05d069883fb4ef822bee2e36b8d4f0cc87e482c14b33416d0a8a6d6bd00a56f3" + } + }, + { + "path": "org/apache/http/protocol/HttpRequestHandlerResolver.java", + "hashes": { + "sha1": "e7a15d8c899727ffd0b878699000ea70128d4b9c", + "sha256": "1472b8fd1cbfe20116c9effa195c9e0902173c58582a903611245cf9ec4b8062" + } + }, + { + "path": "org/apache/http/protocol/HttpRequestInterceptorList.java", + "hashes": { + "sha1": "189594259d89575a67db918788e1a76cef75d1a6", + "sha256": "783b0ea7a89d2c0a956b871fd6d14d2826c39b7cd61d5f111fd1d5a62362eb7c" + } + }, + { + "path": "org/apache/http/protocol/HttpResponseInterceptorList.java", + "hashes": { + "sha1": "1e90c2b40bcd8adfecf16dd4cc5b67e6c7d7ee66", + "sha256": "74a530eb0140c8e4a8a9369b14151819fd5ae8c39ce8d1839251e2c7cfbab89a" + } + }, + { + "path": "org/apache/http/protocol/HttpService.java", + "hashes": { + "sha1": "67ede2152d32557bf806a59bdf1386259099e7eb", + "sha256": "d99cf77c4011fc9c0f35cee1200fc136af07f5dd0ce9903949274eb3724e88df" + } + }, + { + "path": "org/apache/http/protocol/ImmutableHttpProcessor.java", + "hashes": { + "sha1": "1a2aa84cd3030c635537cf3d808c22904e5d14e5", + "sha256": "5011ba129908f0d9a1b477fa2fa26f64936a087e03ca27479a4929e4237b7870" + } + }, + { + "path": "org/apache/http/protocol/RequestConnControl.java", + "hashes": { + "sha1": "9aedfb9e2cc05e9517762a751b10c89b9524b121", + "sha256": "b38094b7131e5ff8c9d83fb020127c2ab70b57c6713c3a8226def641f5b9513d" + } + }, + { + "path": "org/apache/http/protocol/RequestContent.java", + "hashes": { + "sha1": "a36a8fed96333c8515accb18b903832f57ce788b", + "sha256": "3bc87cfed9b90db3fe9419c141f22b8c08f94a5d9f8f2e040bf076ed9f9c2cab" + } + }, + { + "path": "org/apache/http/protocol/RequestDate.java", + "hashes": { + "sha1": "452da3305c92d468017d0ed99b3c804da6d41b66", + "sha256": "9b51021beb68c2b672295f6e6e1f419bf203a5a8ebbc69ba8aa279d91c5bf591" + } + }, + { + "path": "org/apache/http/protocol/RequestExpectContinue.java", + "hashes": { + "sha1": "6fde1da5af235ca29fe54107d5765a6d65450a43", + "sha256": "bfeafff347a4dbec03f6b6d239337409f755c1de779eed3c4a395fa169721f9b" + } + }, + { + "path": "org/apache/http/protocol/RequestTargetHost.java", + "hashes": { + "sha1": "ee23fd878b23fa63ed4a0ec3eddb32cfedba5340", + "sha256": "dab26fc11f0d0d3e21de7496a5ab89250afde1bf077aebc92c383e2c5b3dc4c8" + } + }, + { + "path": "org/apache/http/protocol/RequestUserAgent.java", + "hashes": { + "sha1": "0ba2f64e37fcefbafd4f7a0f531e75e037bf59f4", + "sha256": "56a3bc2f2fdb2edc5000a75df14304b733df683c320ed82374f01d3d6275a9d0" + } + }, + { + "path": "org/apache/http/protocol/ResponseConnControl.java", + "hashes": { + "sha1": "7c73e05a6a06d46c02cf2dc19aaee81d554c2af2", + "sha256": "f3369ade9292d79108d80423006037d1de553a5d08d2078a064a449f90d8d950" + } + }, + { + "path": "org/apache/http/protocol/ResponseContent.java", + "hashes": { + "sha1": "407855877268538c9ef0ba58d2687e6faf069fc7", + "sha256": "3b09c204fb4feb817bd6357d138dcdfef69d4e0cb23d2b627573f16ff9b55971" + } + }, + { + "path": "org/apache/http/protocol/ResponseDate.java", + "hashes": { + "sha1": "eb6e0cb2d8e53fa55e1cc3a4b6b9875fda25ffb7", + "sha256": "dc29840d9139ad90fe5c7f8409fcc3e40bbff5dfdaa56986e4fe284c8612a07d" + } + }, + { + "path": "org/apache/http/protocol/ResponseServer.java", + "hashes": { + "sha1": "3c1b6ec6a9034204e5d52097aebec14692c69e36", + "sha256": "2c49c45f72d137d7a453a82c58cc209483671b7a8b6095f6b3767cb7c3db4801" + } + }, + { + "path": "org/apache/http/protocol/SyncBasicHttpContext.java", + "hashes": { + "sha1": "904b96563dd0e8e3de062ee1978b7b72eb9833f6", + "sha256": "b4fdc2294fc04ddfd95eddf7a02225e8fbd92efa35b0b1a8264052fdd4c102e5" + } + }, + { + "path": "org/apache/http/protocol/UriPatternMatcher.java", + "hashes": { + "sha1": "a96a7d37174a005f5ff4c61c09cb0e58e505c515", + "sha256": "0551e322a05eae3a5cb45bbf39cd1d60722801e819056ad05adba5656ac01165" + } + }, + { + "path": "org/apache/http/protocol/package.html", + "hashes": { + "sha1": "31dc05a3967b44dac9831ce7005296fc39b4c098", + "sha256": "88ed7f779110eba2b3a4f5091b786db359c99f65d1b459af423d1d43c3e1b9f9" + } + }, + { + "path": "org/apache/http/util/ByteArrayBuffer.java", + "hashes": { + "sha1": "1f43327077a86f45f27b9b8f81f534ac2c6247fc", + "sha256": "6e0128327f1ace03787d8b618456adde82463c8f6810ea5902501736e7f3a2fc" + } + }, + { + "path": "org/apache/http/util/CharArrayBuffer.java", + "hashes": { + "sha1": "b8a396d8e1b5eaebdfff7582615d0abc29ad10cc", + "sha256": "9d2dd7cd79b0579faf3bd740b21cb9c868a4fe34695361372b99864b9ea9528a" + } + }, + { + "path": "org/apache/http/util/EncodingUtils.java", + "hashes": { + "sha1": "ebcb4d1a312503192ed1d40c1750eccf9b0496bc", + "sha256": "d14ede17be75a7754d4901298d92c809f4a8d591d1232252c5019eb2f72a7335" + } + }, + { + "path": "org/apache/http/util/EntityUtils.java", + "hashes": { + "sha1": "5f32e1f2fb8848b00854498e26fa52b83fd03cff", + "sha256": "9a049e8dba1d2d7ce78274bc6f06002b50e7681f9816c73446a5cbb1e2eef13f" + } + }, + { + "path": "org/apache/http/util/ExceptionUtils.java", + "hashes": { + "sha1": "2c4bc02be0d5e4ef35c6c2e0e06fa57f5f195113", + "sha256": "dc63d8ec55ac4a2fc9f1ee6123a38992ce64f7d031eb23e052bdfff25d28957a" + } + }, + { + "path": "org/apache/http/util/LangUtils.java", + "hashes": { + "sha1": "ecfd92682e5e564c2193cb1fbf460f101716714e", + "sha256": "022b32fb3b265d15b8d5fe9cbf6c3f0dcf7faf66fbe0b2030de5bac260a9fd42" + } + }, + { + "path": "org/apache/http/util/VersionInfo.java", + "hashes": { + "sha1": "d9f180dd61eabf70a1b9cfed4fa74d6312ad16d0", + "sha256": "29c288cbb90783359e367ab681d40b685f31189d11e3bf06dbe4179323cd94fc" + } + }, + { + "path": "org/apache/http/util/package.html", + "hashes": { + "sha1": "6e7e6142aa8c0380a56c3b1d3298b7de49c2d3e4", + "sha256": "146eb50b3c8c9ddad34517f56ef96d08d3873d02c06569ba051d16c690172479" + } + }, + { + "path": "org/apache/http/version.properties", + "hashes": { + "sha1": "0cfffd33e6ddaa9fb575bf1e57cddbc2d3254fff", + "sha256": "987b51fc9582d4f9a22c22b6b248778f8def520b5a5b258e7c59737e280a0c1f" + } + } + ], + "releaseDate": "2010-11-13T19:11:34.000Z" + } + }, + "licensee": { + "9.14.0": { + "_metadata": { + "type": "licensee", + "url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1", + "fetchedAt": "2022-04-08T16:34:36.129Z", + "links": { + "self": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:licensee:9.14.0", + "type": "resource" + }, + "siblings": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:licensee", + "type": "collection" + } + }, + "schemaVersion": "9.14.0", + "toolVersion": "9.12.0", + "processedAt": "2022-04-08T16:34:36.694Z" + }, + "licensee": { + "version": "9.12.0", + "parameters": [ + "--json", + "--no-readme" + ], + "output": { + "contentType": "application/json", + "content": { + "licenses": [ + { + "key": "apache-2.0", + "spdx_id": "Apache-2.0", + "meta": { + "title": "Apache License 2.0", + "source": "https://spdx.org/licenses/Apache-2.0.html", + "description": "A permissive license whose main conditions require preservation of copyright and license notices. Contributors provide an express grant of patent rights. Licensed works, modifications, and larger works may be distributed under different terms and without source code.", + "how": "Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.", + "using": [ + { + "Kubernetes": "https://github.com/kubernetes/kubernetes/blob/master/LICENSE" + }, + { + "PDF.js": "https://github.com/mozilla/pdf.js/blob/master/LICENSE" + }, + { + "Swift": "https://github.com/apple/swift/blob/master/LICENSE.txt" + } + ], + "featured": true, + "hidden": false, + "nickname": null, + "note": "The Apache Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice at the very end of the license in the appendix." + }, + "url": "http://choosealicense.com/licenses/apache-2.0/", + "rules": { + "permissions": [ + { + "tag": "commercial-use", + "label": "Commercial use", + "description": "This software and derivatives may be used for commercial purposes." + }, + { + "tag": "modifications", + "label": "Modification", + "description": "This software may be modified." + }, + { + "tag": "distribution", + "label": "Distribution", + "description": "This software may be distributed." + }, + { + "tag": "patent-use", + "label": "Patent use", + "description": "This license provides an express grant of patent rights from contributors." + }, + { + "tag": "private-use", + "label": "Private use", + "description": "This software may be used and modified in private." + } + ], + "conditions": [ + { + "tag": "include-copyright", + "label": "License and copyright notice", + "description": "A copy of the license and copyright notice must be included with the software." + }, + { + "tag": "document-changes", + "label": "State changes", + "description": "Changes made to the code must be documented." + } + ], + "limitations": [ + { + "tag": "trademark-use", + "label": "Trademark use", + "description": "This license explicitly states that it does NOT grant trademark rights, even though licenses without such a statement probably do not grant any implicit trademark rights." + }, + { + "tag": "liability", + "label": "Liability", + "description": "This license includes a limitation of liability." + }, + { + "tag": "warranty", + "label": "Warranty", + "description": "The license explicitly states that it does NOT provide any warranty." + } + ] + }, + "fields": [], + "other": false, + "gpl": false, + "lgpl": false, + "cc": false + } + ], + "matched_files": [ + { + "filename": "META-INF/LICENSE.txt", + "content": " 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", + "content_hash": "ab3901051663cb8ee5dea9ebdff406ad136910e3", + "content_normalized": "terms and conditions for use, reproduction, and distribution - definitions. \"license\" shall mean the terms and conditions for use, reproduction, and distribution as defined by sections 1 through 9 of this document. \"licensor\" shall mean the copyright holder or entity authorized by the copyright holder that is granting the license. \"legal entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. for the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. \"you\" (or \"your\") shall mean an individual or legal entity exercising permissions granted by this license. \"source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. \"object\" form shall mean any form resulting from mechanical transformation or translation of a source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. \"work\" shall mean the work of authorship, whether in source or object form, made available under the license, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the appendix below). \"derivative works\" shall mean any work, whether in source or object form, that is based on (or derived from) the work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. for the purposes of this license, derivative works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the work and derivative works thereof. \"contribution\" shall mean any work of authorship, including the original version of the work and any modifications or additions to that work or derivative works thereof, that is intentionally submitted to licensor for inclusion in the work by the copyright holder or by an individual or legal entity authorized to submit on behalf of the copyright holder. for the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the licensor for the purpose of discussing and improving the work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright holder as \"not a contribution.\" \"contributor\" shall mean licensor and any individual or legal entity on behalf of whom a contribution has been received by licensor and subsequently incorporated within the work. - grant of copyright license. subject to the terms and conditions of this license, each contributor hereby grants to you a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute the work and such derivative works in source or object form. - grant of patent license. subject to the terms and conditions of this license, each contributor hereby grants to you a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the work, where such license applies only to those patent claims licensable by such contributor that are necessarily infringed by their contribution(s) alone or by combination of their contribution(s) with the work to which such contribution(s) was submitted. if you institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the work or a contribution incorporated within the work constitutes direct or contributory patent infringement, then any patent licenses granted to you under this license for that work shall terminate as of the date such litigation is filed. - redistribution. you may reproduce and distribute copies of the work or derivative works thereof in any medium, with or without modifications, and in source or object form, provided that you meet the following conditions: * you must give any other recipients of the work or derivative works a copy of this license; and * you must cause any modified files to carry prominent notices stating that you changed the files; and * you must retain, in the source form of any derivative works that you distribute, all copyright, patent, trademark, and attribution notices from the source form of the work, excluding those notices that do not pertain to any part of the derivative works; and * if the work includes a \"notice\" text file as part of its distribution, then any derivative works that you distribute must include a readable copy of the attribution notices contained within such notice file, excluding those notices that do not pertain to any part of the derivative works, in at least one of the following places: within a notice text file distributed as part of the derivative works; within the source form or documentation, if provided along with the derivative works; or, within a display generated by the derivative works, if and wherever such third-party notices normally appear. the contents of the notice file are for informational purposes only and do not modify the license. you may add your own attribution notices within derivative works that you distribute, alongside or as an addendum to the notice text from the work, provided that such additional attribution notices cannot be construed as modifying the license. you may add your own copyright statement to your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of your modifications, or for any such derivative works as a whole, provided your use, reproduction, and distribution of the work otherwise complies with the conditions stated in this license. - submission of contributions. unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you to the licensor shall be under the terms and conditions of this license, without any additional terms or conditions. notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with licensor regarding such contributions. - trademarks. this license does not grant permission to use the trade names, trademarks, service marks, or product names of the licensor, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the notice file. - disclaimer of warranty. unless required by applicable law or agreed to in writing, licensor provides the work (and each contributor provides its contributions) on an \"as is\" basis, without warranties or conditions of any kind, either express or implied, including, without limitation, any warranties or conditions of title, non-infringement, merchantability, or fitness for a particular purpose. you are solely responsible for determining the appropriateness of using or redistributing the work and assume any risks associated with your exercise of permissions under this license. - limitation of liability. in no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any contributor be liable to you for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this license or out of the use or inability to use the work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such contributor has been advised of the possibility of such damages. - accepting warranty or additional liability. while redistributing the work or derivative works thereof, you may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this license. however, in accepting such obligations, you may act only on your own behalf and on your sole responsibility, not on behalf of any other contributor, and only if you agree to indemnify, defend, and hold each contributor harmless for any liability incurred by, or claims asserted against, such contributor by reason of your accepting any such warranty or additional liability.", + "matcher": { + "name": "exact", + "confidence": 100 + }, + "matched_license": "Apache-2.0", + "attribution": null + } + ] + } + } + }, + "attachments": [ + { + "path": "META-INF/LICENSE.txt", + "token": "59899c6091b540582ed617e8eeaac4919dc985ccfc35459ee9752b699be5205b" + } + ] + } + }, + "scancode": { + "30.3.0": { + "_metadata": { + "type": "scancode", + "url": "cd:/sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1", + "fetchedAt": "2022-04-08T16:34:36.364Z", + "links": { + "self": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:scancode:30.3.0", + "type": "resource" + }, + "siblings": { + "href": "urn:sourcearchive:mavencentral:org.apache.httpcomponents:httpcore:revision:4.1:tool:scancode", + "type": "collection" + } + }, + "schemaVersion": "30.3.0", + "toolVersion": "30.1.0", + "contentType": "application/json", + "releaseDate": "2010-11-13T19:11:34.000Z", + "processedAt": "2022-04-08T16:35:41.580Z" + }, + "content": { + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "30.1.0", + "options": { + "input": [ + "/tmp/cd-uL4uDm" + ], + "--classify": true, + "--copyright": true, + "--email": true, + "--generated": true, + "--info": true, + "--is-license-text": true, + "--json-pp": "/tmp/cd-xabnUJ", + "--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-04-08T163437.512396", + "end_timestamp": "2022-04-08T163540.673801", + "output_format_version": "1.0.0", + "duration": 63.161415576934814, + "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": 177 + } + } + ], + "summary": { + "license_expressions": [ + { + "value": "apache-2.0", + "count": 176 + } + ], + "copyrights": [ + { + "value": null, + "count": 176 + }, + { + "value": "Copyright The Apache Software Foundation", + "count": 1 + } + ], + "holders": [ + { + "value": null, + "count": 176 + }, + { + "value": "The Apache Software Foundation", + "count": 1 + } + ], + "authors": [ + { + "value": null, + "count": 176 + }, + { + "value": "The Apache Software Foundation (http://www.apache.org/)", + "count": 1 + } + ], + "programming_language": [ + { + "value": "Java", + "count": 163 + }, + { + "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": [], + "copyrights": [], + "holders": [], + "authors": [], + "programming_language": [] + }, + "files": [ + { + "path": "META-INF", + "type": "directory", + "name": "META-INF", + "base_name": "META-INF", + "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": 3, + "dirs_count": 0, + "size_count": 10484, + "scan_errors": [] + }, + { + "path": "META-INF/LICENSE.txt", + "type": "file", + "name": "LICENSE.txt", + "base_name": "LICENSE", + "extension": ".txt", + "size": 10172, + "date": "2010-11-13", + "sha1": "612ad650a328990087959416a7e2fd160b1daea9", + "md5": "34f8c1142fd6208a8be89399cb521df9", + "sha256": "59899c6091b540582ed617e8eeaac4919dc985ccfc35459ee9752b699be5205b", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "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" + ], + "percentage_of_license_text": 100, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/", + "start_line": 3, + "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, + "scan_errors": [] + }, + { + "path": "META-INF/MANIFEST.MF", + "type": "file", + "name": "MANIFEST.MF", + "base_name": "MANIFEST", + "extension": ".MF", + "size": 123, + "date": "2010-11-13", + "sha1": "d1efee3a8c440a568c4860ffa6cf4c463ff41b76", + "md5": "077d186f81cb0c703be1f2ef6c9bdd4a", + "sha256": "c1a8d39986ee6a0d47bb8e5b3aace6874a4a074477dd991556c370525de445b0", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [], + "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, + "scan_errors": [] + }, + { + "path": "META-INF/NOTICE.txt", + "type": "file", + "name": "NOTICE.txt", + "base_name": "NOTICE", + "extension": ".txt", + "size": 189, + "date": "2010-11-13", + "sha1": "7a2fa8cdb386ec3ab29c165f9cd21e22177011de", + "md5": "313b4ac803c0b94d65dbf5f6ffee5b62", + "sha256": "03b803a07efe116211322efece599d0affaaa88b46f4cdec268744823730b9a4", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "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" + ], + "percentage_of_license_text": 58.33, + "copyrights": [ + { + "value": "Copyright 2005-2010 The Apache Software Foundation", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "value": "The Apache Software Foundation", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "value": "The Apache Software Foundation (http://www.apache.org/)", + "start_line": 4, + "end_line": 5 + } + ], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/", + "start_line": 5, + "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, + "scan_errors": [] + }, + { + "path": "org", + "type": "directory", + "name": "org", + "base_name": "org", + "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": 174, + "dirs_count": 11, + "size_count": 771044, + "scan_errors": [] + }, + { + "path": "org/apache", + "type": "directory", + "name": "apache", + "base_name": "apache", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 174, + "dirs_count": 10, + "size_count": 771044, + "scan_errors": [] + }, + { + "path": "org/apache/http", + "type": "directory", + "name": "http", + "base_name": "http", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 174, + "dirs_count": 9, + "size_count": 771044, + "scan_errors": [] + }, + { + "path": "org/apache/http/ConnectionClosedException.java", + "type": "file", + "name": "ConnectionClosedException.java", + "base_name": "ConnectionClosedException", + "extension": ".java", + "size": 1709, + "date": "2010-11-13", + "sha1": "09d2023caa789224e6a0f9eb5aca902055fb5888", + "md5": "8a827bf30df43515393726b7019abcf0", + "sha256": "f099335615f4ecb5dde0bb7a850b763da9d003950cd033e84cc5ea7a9ec243c9", + "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" + ], + "percentage_of_license_text": 75, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/ConnectionReuseStrategy.java", + "type": "file", + "name": "ConnectionReuseStrategy.java", + "base_name": "ConnectionReuseStrategy", + "extension": ".java", + "size": 2859, + "date": "2010-11-13", + "sha1": "c29a8161e5d618f91b0b1506468a5bf3d9059374", + "md5": "8b25ebf3b59bc49149fd332be63340ec", + "sha256": "efd8e67af436d29d9e2feab3ff8fcf19796c13a3be1d2dbc2daf204ee8c8a7a2", + "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" + ], + "percentage_of_license_text": 40.32, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/FormattedHeader.java", + "type": "file", + "name": "FormattedHeader.java", + "base_name": "FormattedHeader", + "extension": ".java", + "size": 2139, + "date": "2010-11-13", + "sha1": "cfa74bb83c4a74c118fa4f892cd0dfb93468264a", + "md5": "8a3eac13ba4d2d02851955a56a75585b", + "sha256": "c9b6d84eb8ae3b1a6f4826a5d9b27f810a628af5068a74b76630979d8e6f8312", + "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" + ], + "percentage_of_license_text": 55.15, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/Header.java", + "type": "file", + "name": "Header.java", + "base_name": "Header", + "extension": ".java", + "size": 2085, + "date": "2010-11-13", + "sha1": "56c8765d09f121242787eff1dcf8e2df6493121f", + "md5": "4e19bae060f7cad5c521f4cb1cd66a89", + "sha256": "101c5dacae9caa4ef13244bebd4c66712f95d26de9407c97d46765bf88b61dbb", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 57.47, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HeaderElement.java", + "type": "file", + "name": "HeaderElement.java", + "base_name": "HeaderElement", + "extension": ".java", + "size": 3221, + "date": "2010-11-13", + "sha1": "5bf3e02851084299a5bdb0e18f95cdb6cc0849a2", + "md5": "01a4d4d88c23e3126c5bb03d745b405c", + "sha256": "3c72513f693c427ca36790a2c355d6c8227e216f1f7e115bdee3ad6b07cc4363", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 40.43, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HeaderElementIterator.java", + "type": "file", + "name": "HeaderElementIterator.java", + "base_name": "HeaderElementIterator", + "extension": ".java", + "size": 1892, + "date": "2010-11-13", + "sha1": "18bc5ab1639c36c06b55d5a6cce6e70c68a0dbd6", + "md5": "00485bce46e2760f36b96ee113b0929b", + "sha256": "9558cac9934d2bcc8c0c3a7818d2e864fabfbb7c606f54fd0b1272db68685686", + "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" + ], + "percentage_of_license_text": 65.5, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HeaderIterator.java", + "type": "file", + "name": "HeaderIterator.java", + "base_name": "HeaderIterator", + "extension": ".java", + "size": 1831, + "date": "2010-11-13", + "sha1": "f0b4b86111a065f1d615f20eebc3eaec9cafb581", + "md5": "91d333a1b2197c1ebb39bfe666893be3", + "sha256": "a3d76b8c496e92c8aba37db466a3b4b4507372c6cc8f8239473b11b27725764f", + "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" + ], + "percentage_of_license_text": 66.67, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpClientConnection.java", + "type": "file", + "name": "HttpClientConnection.java", + "base_name": "HttpClientConnection", + "extension": ".java", + "size": 3893, + "date": "2010-11-13", + "sha1": "63c61b28b460e1a35eee1ecc536112c65dab1290", + "md5": "fc430b1e257909bf3ff025aa9be09307", + "sha256": "ac7c021084f70779053b58a37799f6cfbcfb70f01da01360241e5f12110c8597", + "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" + ], + "percentage_of_license_text": 31.51, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpConnection.java", + "type": "file", + "name": "HttpConnection.java", + "base_name": "HttpConnection", + "extension": ".java", + "size": 3646, + "date": "2010-11-13", + "sha1": "9748bf675ec200953817f916f95a5e22fe3387a3", + "md5": "2c3c8a03bb6e8ebfff318a41a35a51f2", + "sha256": "d9dd8def314026290da3705d0ff47c0fa49ea1fc1968676f1738c9cacc2b8c04", + "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" + ], + "percentage_of_license_text": 33.19, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpConnectionMetrics.java", + "type": "file", + "name": "HttpConnectionMetrics.java", + "base_name": "HttpConnectionMetrics", + "extension": ".java", + "size": 2297, + "date": "2010-11-13", + "sha1": "6b3d3a427d0cce3386aa855b4e9cf5b33ab57a3e", + "md5": "301d6ad66ae4d296402b8c93263447fb", + "sha256": "c41d3588bcfd86fa0c95abe339fde9d09b41399395bbd3dd86c828b1c11831fe", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 55.15, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpEntity.java", + "type": "file", + "name": "HttpEntity.java", + "base_name": "HttpEntity", + "extension": ".java", + "size": 8063, + "date": "2010-11-13", + "sha1": "0925b67f19bf70db3ff07e1653656c709b8bb405", + "md5": "b18d46f61d60c52b79497daa0ad98df1", + "sha256": "9a8f48ba253d7d45ae8911515e147ad05a324b719f9a9b5252defb0feeb29dd4", + "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" + ], + "percentage_of_license_text": 14.94, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": true, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpEntityEnclosingRequest.java", + "type": "file", + "name": "HttpEntityEnclosingRequest.java", + "base_name": "HttpEntityEnclosingRequest", + "extension": ".java", + "size": 2032, + "date": "2010-11-13", + "sha1": "890b3c0d39ec5283894e84ae694380b6938bac64", + "md5": "0b8507b957beb84f024d5c5f4aaf32c7", + "sha256": "fc41450a39ddc81e98a9c3d601589bb9eeefb20db756a8509b69610e422a563a", + "mime_type": "text/plain", + "file_type": "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": 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" + ], + "percentage_of_license_text": 60.98, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 12, + "end_line": 12 + }, + { + "url": "http://www.apache.org/", + "start_line": 25, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpException.java", + "type": "file", + "name": "HttpException.java", + "base_name": "HttpException", + "extension": ".java", + "size": 2282, + "date": "2010-11-13", + "sha1": "ec0511e1b1d58b9e61c29b4e8306be5b223c4b6c", + "md5": "11c18b4999a399fc20678cc8f8cc0f12", + "sha256": "89d0d3f328366bd441ae58d8324b80f1945cd83a723bfded83fd371651829fff", + "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" + ], + "percentage_of_license_text": 55.97, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpHeaders.java", + "type": "file", + "name": "HttpHeaders.java", + "base_name": "HttpHeaders", + "extension": ".java", + "size": 7646, + "date": "2010-11-13", + "sha1": "186aa17acc44cdffb90f518c5c878aa0a1bff0fb", + "md5": "4e36fb070612a70c1e94564e354b37ba", + "sha256": "b2d798e93cf4afa192498c6448a02935c7198d7bfeded3f2fc4d0a4076d6e79a", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 13.32, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpHost.java", + "type": "file", + "name": "HttpHost.java", + "base_name": "HttpHost", + "extension": ".java", + "size": 6421, + "date": "2010-11-13", + "sha1": "e76f64ae716af51fd1a4c4e3ea4954f86ef45bcf", + "md5": "3425f311ead45e010c964cdfc159f25a", + "sha256": "46a3fbee9b27f54ce98973a8394127ea830a21e8a9424c2c7b46ddcfb67437dd", + "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" + ], + "percentage_of_license_text": 21.37, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpInetConnection.java", + "type": "file", + "name": "HttpInetConnection.java", + "base_name": "HttpInetConnection", + "extension": ".java", + "size": 1509, + "date": "2010-11-13", + "sha1": "1b96c2122d5767c6d4d6cb36306c49b300ec819d", + "md5": "37b96444e2e157b24851f54cd8a41e7d", + "sha256": "610631fcf15ed211ea95150949a684bff971a6854e3bc7795d53f01ceedba7be", + "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" + ], + "percentage_of_license_text": 82.42, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpMessage.java", + "type": "file", + "name": "HttpMessage.java", + "base_name": "HttpMessage", + "extension": ".java", + "size": 6753, + "date": "2010-11-13", + "sha1": "cd15c87564a9b2bc73ac874d6f476a35beb6efb8", + "md5": "4d4ef45332bcb9c2557dc3a140506cb6", + "sha256": "a33820a3a25448673b540838853d74d24f4225631976f870a135f97c9163b15a", + "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" + ], + "percentage_of_license_text": 17.34, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpRequest.java", + "type": "file", + "name": "HttpRequest.java", + "base_name": "HttpRequest", + "extension": ".java", + "size": 1892, + "date": "2010-11-13", + "sha1": "451d11743a5e75a64a378039344783d4e80a76ef", + "md5": "d91ba1da8fb30808747b83cbf94440c0", + "sha256": "d1b5ee74bf1c7910154269ebd4cd3a77de558a3324f8e026e146a60174b7b4c0", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 68.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpRequestFactory.java", + "type": "file", + "name": "HttpRequestFactory.java", + "base_name": "HttpRequestFactory", + "extension": ".java", + "size": 1543, + "date": "2010-11-13", + "sha1": "3f86d512781bae2ea157ee456d38ca77b3d77d88", + "md5": "bfcfc205a644c95319d441cd336c6da2", + "sha256": "50d09950f1ac3cf1888c557cbc0f167437c8c41125ab7548d553b0e1980a86f0", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 83.33, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpRequestInterceptor.java", + "type": "file", + "name": "HttpRequestInterceptor.java", + "base_name": "HttpRequestInterceptor", + "extension": ".java", + "size": 2708, + "date": "2010-11-13", + "sha1": "86457e6bccedca3a5260e4ce4d3930a005952ba2", + "md5": "bd231469fe7fdb6888867730778abf42", + "sha256": "d9a5c19dc0f88dd23e9c239e15e3a09f7e02a49c1679ca3726a58f68487341e4", + "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" + ], + "percentage_of_license_text": 43.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpResponse.java", + "type": "file", + "name": "HttpResponse.java", + "base_name": "HttpResponse", + "extension": ".java", + "size": 5396, + "date": "2010-11-13", + "sha1": "fe4530eb9215e6afeafac9c192ac3c29961acb1d", + "md5": "cb0e65436d94fa3d892a4103b6ca16b8", + "sha256": "237dea689375c813a1d88fafa74a75748db5466cbf655e7985df118b44af685d", + "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" + ], + "percentage_of_license_text": 23.81, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpResponseFactory.java", + "type": "file", + "name": "HttpResponseFactory.java", + "base_name": "HttpResponseFactory", + "extension": ".java", + "size": 2512, + "date": "2010-11-13", + "sha1": "2a02ed003c2ee607dfbe5a01294dbc53823d7d5e", + "md5": "39f6b295ea78a14fb2e16fc319220c1e", + "sha256": "3eb5619b9130d9338d2c531c6b7f5316010246c704a757b7258820928ca8abc8", + "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" + ], + "percentage_of_license_text": 51.72, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpResponseInterceptor.java", + "type": "file", + "name": "HttpResponseInterceptor.java", + "base_name": "HttpResponseInterceptor", + "extension": ".java", + "size": 2714, + "date": "2010-11-13", + "sha1": "75df9e63113bddd95ea52f9d3c94a8896697b979", + "md5": "ebd8e8854eb8f9cd3d96aa0ecd862c62", + "sha256": "a60aa3a6fc89dd4056d2f5a05ceb2c4eab297188d4e374562c2f450b6df7da54", + "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" + ], + "percentage_of_license_text": 43.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpServerConnection.java", + "type": "file", + "name": "HttpServerConnection.java", + "base_name": "HttpServerConnection", + "extension": ".java", + "size": 3258, + "date": "2010-11-13", + "sha1": "8495796dee60aef41a58627dd65999ab6a8e0289", + "md5": "b8fd815ee78cb0f435ee7e6a87c5d4e6", + "sha256": "8410bd782a9a6df6196674d18d427769556079ce1be2c488c0cf1d950364884b", + "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" + ], + "percentage_of_license_text": 38.17, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpStatus.java", + "type": "file", + "name": "HttpStatus.java", + "base_name": "HttpStatus", + "extension": ".java", + "size": 7814, + "date": "2010-11-13", + "sha1": "265cf51183216b610b661e9dd68603cd7860846f", + "md5": "1ede47f4210c85ce705a3400471560f0", + "sha256": "8e354585fccb6df1dab894d75afda75c407438f0a9d646b1ac157ff1a8351277", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 13.23, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/HttpVersion.java", + "type": "file", + "name": "HttpVersion.java", + "base_name": "HttpVersion", + "extension": ".java", + "size": 3316, + "date": "2010-11-13", + "sha1": "aa0d140a334b5d7f5291e4adc86efd2ce63408d0", + "md5": "6f4c03e3d42656e492be2100abc5d5a4", + "sha256": "5a0d5d90e4dffc6be413132699a9eced69daa330e64f53cac16f15496c049175", + "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" + ], + "percentage_of_license_text": 37.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/MalformedChunkCodingException.java", + "type": "file", + "name": "MalformedChunkCodingException.java", + "base_name": "MalformedChunkCodingException", + "extension": ".java", + "size": 1854, + "date": "2010-11-13", + "sha1": "8599f21cd854fffa1a6759f66e0fa116fea958a7", + "md5": "240f0a29717a44fd80ab80d20265a7e3", + "sha256": "66c1b594f0ac8a172db0edeacbf6ab281084e12a75862163830dc9327e49cf9f", + "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" + ], + "percentage_of_license_text": 73.89, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/MethodNotSupportedException.java", + "type": "file", + "name": "MethodNotSupportedException.java", + "base_name": "MethodNotSupportedException", + "extension": ".java", + "size": 2130, + "date": "2010-11-13", + "sha1": "0f36b2d46981f6d9125bef485ca868646ff2cbea", + "md5": "c520bf3f4f1608e366f2128b20f632bc", + "sha256": "c0d660cd20afb844e7b698bc1a88ceb3b6d0119f16dbd329c8217ef2b79c46eb", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 60.48, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/NameValuePair.java", + "type": "file", + "name": "NameValuePair.java", + "base_name": "NameValuePair", + "extension": ".java", + "size": 1546, + "date": "2010-11-13", + "sha1": "82c2009c5bfb0cec1431e44e615f841bd18cd07e", + "md5": "01342f3942107f6494e48377c0964161", + "sha256": "b5f724cebc0bf4cb7a0ce2a2eef0ca2c3cb420762bc62cf1d6fe9efa7e40829f", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 81.52, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/NoHttpResponseException.java", + "type": "file", + "name": "NoHttpResponseException.java", + "base_name": "NoHttpResponseException", + "extension": ".java", + "size": 1707, + "date": "2010-11-13", + "sha1": "71292280cb85fbb291626b02e3bd5291b5eb6d45", + "md5": "c0fb1a52f11f0e9deabc5b8b4af23628", + "sha256": "08252fc7d90b3e558d8005ce580f10db5a45c2e1dc73188fb6bcb9989842ec28", + "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" + ], + "percentage_of_license_text": 74.63, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1826, + "date": "2010-11-13", + "sha1": "328c66b3236a7defc476222e61506f028f361bc4", + "md5": "049e79dd01d2d0d851d2f3d9f070ffe8", + "sha256": "f3183f4dc94a4794db65f16c1be324e142bce7ac210af49ebc8f754c23f2a7ea", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/ParseException.java", + "type": "file", + "name": "ParseException.java", + "base_name": "ParseException", + "extension": ".java", + "size": 2086, + "date": "2010-11-13", + "sha1": "7af794c44df567bb83e64c13d537c97077962ed3", + "md5": "d30becf876a5e514d8290e99afd8906e", + "sha256": "9f9be341fe00e8c5ae5869a835bfb2809ff1483daefda73ce0b8edf4d2ff5433", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 60.48, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/ProtocolException.java", + "type": "file", + "name": "ProtocolException.java", + "base_name": "ProtocolException", + "extension": ".java", + "size": 2302, + "date": "2010-11-13", + "sha1": "f81e9b126889e99227e1c91327c23dbaa8693c42", + "md5": "bd611c9091620fcfc58bf0c13b1dc80b", + "sha256": "3693f68bdd62477c0dce48e7b564c164e4150bf6d60ee3835164f6287ca3d077", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 56.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/ProtocolVersion.java", + "type": "file", + "name": "ProtocolVersion.java", + "base_name": "ProtocolVersion", + "extension": ".java", + "size": 9197, + "date": "2010-11-13", + "sha1": "f0d6e0dc2c49eb902354ebc07a94a315866fecac", + "md5": "6c342ba282b997fb2fa674d4e73d54cc", + "sha256": "4a71bf24e1a1d4797350c7b14320f158aaebef77d7b757ad6c1942a0a9314f5e", + "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" + ], + "percentage_of_license_text": 14.78, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/ReasonPhraseCatalog.java", + "type": "file", + "name": "ReasonPhraseCatalog.java", + "base_name": "ReasonPhraseCatalog", + "extension": ".java", + "size": 1804, + "date": "2010-11-13", + "sha1": "b931f4350037937832a7bd03b9765b600583d263", + "md5": "1eae65d079de64347731d96df46391e6", + "sha256": "84a156582b653bb0b6db10cb771aa4c390d88432f494dcbddf23141d5ceb9ed0", + "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" + ], + "percentage_of_license_text": 65.22, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/RequestLine.java", + "type": "file", + "name": "RequestLine.java", + "base_name": "RequestLine", + "extension": ".java", + "size": 1683, + "date": "2010-11-13", + "sha1": "b39362f01a7dc2246c3ac86a0d9b8f8dd1118d0b", + "md5": "04ff485c9dd1f0139ad560b7a00e9f46", + "sha256": "482f9d0d9f1263df5f6111e104dc7e1a370dd469070fd4620596c8fee4572888", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 69.77, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/StatusLine.java", + "type": "file", + "name": "StatusLine.java", + "base_name": "StatusLine", + "extension": ".java", + "size": 1827, + "date": "2010-11-13", + "sha1": "582eb19dece77407f39a0efc8cde483fcb12ee4e", + "md5": "b4e5ce6165546241e3111309d6992ed5", + "sha256": "411a7b1aac57e7c999faee2e6a0a99843d073bf386fcae014f4667577eabd498", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 63.83, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/TokenIterator.java", + "type": "file", + "name": "TokenIterator.java", + "base_name": "TokenIterator", + "extension": ".java", + "size": 1978, + "date": "2010-11-13", + "sha1": "f3b13f34a13778b0a11bb4e35620ab952e8eccfe", + "md5": "990e8617734395a5a62331a63c2589ad", + "sha256": "16adf73c9103e3578a42ec1ca8544539c1ccfcfb96bcaa9ebbf9bed8382f1580", + "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" + ], + "percentage_of_license_text": 60.98, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/TruncatedChunkException.java", + "type": "file", + "name": "TruncatedChunkException.java", + "base_name": "TruncatedChunkException", + "extension": ".java", + "size": 1677, + "date": "2010-11-13", + "sha1": "b891629e7af31971f2dd97ef03c127e2cce37a67", + "md5": "1a5cbcaf23ce641d73354606a936fba9", + "sha256": "466f09c1309f6ff8a30d884e71dd55060b65513d149ef331a0862044e020bd3a", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 77.72, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/UnsupportedHttpVersionException.java", + "type": "file", + "name": "UnsupportedHttpVersionException.java", + "base_name": "UnsupportedHttpVersionException", + "extension": ".java", + "size": 1861, + "date": "2010-11-13", + "sha1": "3241e436404a7fcf713c4dc4edeed4732b7d46a0", + "md5": "cb0464475dd15ed10c73e49127fe90ac", + "sha256": "accbbf81f70ed2018e9ab535b544a3510e4454aed3e3c227d31f4f398cd3f777", + "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" + ], + "percentage_of_license_text": 71.43, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/version.properties", + "type": "file", + "name": "version.properties", + "base_name": "version", + "extension": ".properties", + "size": 916, + "date": "2010-11-13", + "sha1": "0cfffd33e6ddaa9fb575bf1e57cddbc2d3254fff", + "md5": "4ffd6f1bb1363f6d253b1fa63c7dd19f", + "sha256": "987b51fc9582d4f9a22c22b6b248778f8def520b5a5b258e7c59737e280a0c1f", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "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" + ], + "percentage_of_license_text": 88.15, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 10, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity", + "type": "directory", + "name": "entity", + "base_name": "entity", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 13, + "dirs_count": 0, + "size_count": 40900, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/AbstractHttpEntity.java", + "type": "file", + "name": "AbstractHttpEntity.java", + "base_name": "AbstractHttpEntity", + "extension": ".java", + "size": 5448, + "date": "2010-11-13", + "sha1": "c856d7f8e0c40b3363d5932c37ef4c25364eb9e1", + "md5": "48443daf0812e79098bf0d05460ea761", + "sha256": "4973bc74482d30f303136c3abcec3a59c9dbafe336d9733d01c8b18fd445a2c5", + "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" + ], + "percentage_of_license_text": 25.95, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/BasicHttpEntity.java", + "type": "file", + "name": "BasicHttpEntity.java", + "base_name": "BasicHttpEntity", + "extension": ".java", + "size": 4120, + "date": "2010-11-13", + "sha1": "dddf065f662285729466b433a6d606f39985a4dc", + "md5": "0bc452f82a9142b9a57ab44195e6bd08", + "sha256": "23931138016cc0ecaa64337e2fee29922efcc2d78e980b934d6684c3879b34c1", + "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" + ], + "percentage_of_license_text": 33.56, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/BufferedHttpEntity.java", + "type": "file", + "name": "BufferedHttpEntity.java", + "base_name": "BufferedHttpEntity", + "extension": ".java", + "size": 3675, + "date": "2010-11-13", + "sha1": "f769eb9ff59cd0a50295e2c1426c97c40780a703", + "md5": "636e6a79c1ff2329a56d553977328d09", + "sha256": "fbcb851afbbf9e502170611b866b2387332b7a4db4565148e09d30d67feacc30", + "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" + ], + "percentage_of_license_text": 37.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/ByteArrayEntity.java", + "type": "file", + "name": "ByteArrayEntity.java", + "base_name": "ByteArrayEntity", + "extension": ".java", + "size": 2593, + "date": "2010-11-13", + "sha1": "8eef873c4e188be7b4096e70f9942d9eb1874a9e", + "md5": "7d62f3999cd502960a3e7770fa561d34", + "sha256": "61b35bf7103817ba873e697e7929bd6230df187eaca4a6f7a03200b6c44f7468", + "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" + ], + "percentage_of_license_text": 52.08, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/ContentLengthStrategy.java", + "type": "file", + "name": "ContentLengthStrategy.java", + "base_name": "ContentLengthStrategy", + "extension": ".java", + "size": 2102, + "date": "2010-11-13", + "sha1": "49020f1bf8af79239880a4f8b41502633d992f16", + "md5": "199ca51b886f23381722c9adb34d3178", + "sha256": "78e6de9e6dbb6d18995b94facef6709fdcc1fb4b236a15e07b001589616533ad", + "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" + ], + "percentage_of_license_text": 56.6, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/ContentProducer.java", + "type": "file", + "name": "ContentProducer.java", + "base_name": "ContentProducer", + "extension": ".java", + "size": 1535, + "date": "2010-11-13", + "sha1": "221ae577191d451997785b76dc82e331fd0243b0", + "md5": "a2dc200e9798367e16e6e8f9f12d08ea", + "sha256": "5d00c59332254c9a2d127228b665ed04811c5e95af4604b615cd7db3878d5769", + "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" + ], + "percentage_of_license_text": 77.72, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/EntityTemplate.java", + "type": "file", + "name": "EntityTemplate.java", + "base_name": "EntityTemplate", + "extension": ".java", + "size": 2396, + "date": "2010-11-13", + "sha1": "af3c4f99a0b2bf3c96ec004028801ed0ba13b296", + "md5": "babbe6d4deb48827bc81ae3bded3f453", + "sha256": "9078215e94dd01b719cf5011400cb4d76767a9064e0be2bf11fed1a485bee1db", + "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" + ], + "percentage_of_license_text": 57.47, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/FileEntity.java", + "type": "file", + "name": "FileEntity.java", + "base_name": "FileEntity", + "extension": ".java", + "size": 3008, + "date": "2010-11-13", + "sha1": "9488113243f28ff3ebba616154fea619359f7094", + "md5": "9841945151afb6f72b8254265f7ca439", + "sha256": "fc57263c2eca1a2dae09a2846b40eb8035ae1d68514bc7c38591bb2bd36824da", + "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" + ], + "percentage_of_license_text": 45.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/HttpEntityWrapper.java", + "type": "file", + "name": "HttpEntityWrapper.java", + "base_name": "HttpEntityWrapper", + "extension": ".java", + "size": 3343, + "date": "2010-11-13", + "sha1": "0df036cd1832cc65992f244f8e1b88d4bb43a0cc", + "md5": "009d6da4d2e2220286a27ce512a16800", + "sha256": "ae7839045c3f40e6d22cd0ff6cc60a938c4c45095a8600fa69f1bca3ad47acb9", + "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" + ], + "percentage_of_license_text": 42.49, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/InputStreamEntity.java", + "type": "file", + "name": "InputStreamEntity.java", + "base_name": "InputStreamEntity", + "extension": ".java", + "size": 3542, + "date": "2010-11-13", + "sha1": "f49bfca481c386986b541f7654c190645219f4b6", + "md5": "97259b591fd319048f8df194b1b90ca9", + "sha256": "ed3f09fcec47927f2ca4ad075de251c4e3721366365fa2536fd02fc8ebf240d2", + "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" + ], + "percentage_of_license_text": 37.88, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 2071, + "date": "2010-11-13", + "sha1": "c266c5b824b3e75e485ce45209c2e0131c24c8e6", + "md5": "2dacd912c642c993266d626decd2f209", + "sha256": "b22ab9e8dfef76a655d7e5e75b06c1857c800e6fd3e7bc96f25fd2ee6101df12", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 55.56, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/SerializableEntity.java", + "type": "file", + "name": "SerializableEntity.java", + "base_name": "SerializableEntity", + "extension": ".java", + "size": 3735, + "date": "2010-11-13", + "sha1": "01bfbe979d8fe1045965f7eec504b2c17abd994a", + "md5": "4b70190bac172fb3c79c5e601ad96988", + "sha256": "ed9e4157d8e5797ff4985173d346288caaecd16ea20b975f0d4ce98e35af0aa3", + "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" + ], + "percentage_of_license_text": 37.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/entity/StringEntity.java", + "type": "file", + "name": "StringEntity.java", + "base_name": "StringEntity", + "extension": ".java", + "size": 3332, + "date": "2010-11-13", + "sha1": "2f38369ca2e14d71a8e89db4821776cecd582c53", + "md5": "c7f582753f6d8ad5843408c4d69c5a9c", + "sha256": "0df98c4e0f2895ca4b314db65578b84922a0fcad4e713917b13f4bd6fac4509a", + "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" + ], + "percentage_of_license_text": 43.1, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl", + "type": "directory", + "name": "impl", + "base_name": "impl", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 36, + "dirs_count": 2, + "size_count": 191657, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/AbstractHttpClientConnection.java", + "type": "file", + "name": "AbstractHttpClientConnection.java", + "base_name": "AbstractHttpClientConnection", + "extension": ".java", + "size": 11857, + "date": "2010-11-13", + "sha1": "60c9506d84e43a54cb35b0131fcef2d561b65a34", + "md5": "411320ea288acd8e7d18f514b53dcbc8", + "sha256": "fd339b1b7bb4bcb00b43f9c7ebc73c0f233a2072f6dbaf129a6eb8a68aa17e90", + "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" + ], + "percentage_of_license_text": 13.43, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/AbstractHttpServerConnection.java", + "type": "file", + "name": "AbstractHttpServerConnection.java", + "base_name": "AbstractHttpServerConnection", + "extension": ".java", + "size": 11539, + "date": "2010-11-13", + "sha1": "12a96894adb6367732995927f14edda5a261b9cb", + "md5": "fe9bdff58866febe1ed7466727064d82", + "sha256": "cb8bd21eb150495500359f2319678c7c7e449f95084a8d316167883711107815", + "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" + ], + "percentage_of_license_text": 13.75, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/DefaultConnectionReuseStrategy.java", + "type": "file", + "name": "DefaultConnectionReuseStrategy.java", + "base_name": "DefaultConnectionReuseStrategy", + "extension": ".java", + "size": 7609, + "date": "2010-11-13", + "sha1": "b235c292e889109c039399a435fb007f5a0fc5af", + "md5": "a0ba73070ea2e87860438882c306ce44", + "sha256": "8a0e09f936ee1e3d0001620474ef87020acaafdc0ee6f57f7258908acd379690", + "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" + ], + "percentage_of_license_text": 16.78, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/DefaultHttpClientConnection.java", + "type": "file", + "name": "DefaultHttpClientConnection.java", + "base_name": "DefaultHttpClientConnection", + "extension": ".java", + "size": 3207, + "date": "2010-11-13", + "sha1": "b0fe5863c1e98b158fbd36242f68fa2c6a6341e2", + "md5": "cebb2519085d30fda4d075521231adcf", + "sha256": "b1a03e5dc39f60d137bc6405f0e470a6dc4afffacb91a023fadee4ecc847dd8a", + "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" + ], + "percentage_of_license_text": 44.25, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/DefaultHttpRequestFactory.java", + "type": "file", + "name": "DefaultHttpRequestFactory.java", + "base_name": "DefaultHttpRequestFactory", + "extension": ".java", + "size": 3736, + "date": "2010-11-13", + "sha1": "4fef9ad94732afc71f87f012dfbb438f58b23047", + "md5": "5491d8d8e29a8d9560a5946d582c4089", + "sha256": "efbda5252580c63f7961e01c0a1191d534bda5ed397396a4343c94da81df38b3", + "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" + ], + "percentage_of_license_text": 39.37, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/DefaultHttpResponseFactory.java", + "type": "file", + "name": "DefaultHttpResponseFactory.java", + "base_name": "DefaultHttpResponseFactory", + "extension": ".java", + "size": 4109, + "date": "2010-11-13", + "sha1": "769a10254111b78447ed43676e302f3bbd1a96f2", + "md5": "91f53d26b9ee9ba6239c059e1de4c8a4", + "sha256": "6549ac24f24fd1101fe3fe555217fafcdde22029a4d023085d9ede9530120881", + "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" + ], + "percentage_of_license_text": 35.05, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/DefaultHttpServerConnection.java", + "type": "file", + "name": "DefaultHttpServerConnection.java", + "base_name": "DefaultHttpServerConnection", + "extension": ".java", + "size": 3182, + "date": "2010-11-13", + "sha1": "efeed4107cad605354ce5e6d18d4185dd502eb1c", + "md5": "176fa078aa733d9e87df010d4f851725", + "sha256": "6315cbaf09f47fd666c7305f5813e3097c7b9ac62e26727a350f08858fbeda2b", + "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" + ], + "percentage_of_license_text": 44.25, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/EnglishReasonPhraseCatalog.java", + "type": "file", + "name": "EnglishReasonPhraseCatalog.java", + "base_name": "EnglishReasonPhraseCatalog", + "extension": ".java", + "size": 8164, + "date": "2010-11-13", + "sha1": "2101d57a0960b69fb2d67a916de7a99185ccd8b7", + "md5": "5d17911dc3b2359566df758a66ba6142", + "sha256": "125791049bb84bf58756e2115cd32ac8cfcafe45bb49adf486dda6d72eac6d0d", + "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" + ], + "percentage_of_license_text": 18.66, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/HttpConnectionMetricsImpl.java", + "type": "file", + "name": "HttpConnectionMetricsImpl.java", + "base_name": "HttpConnectionMetricsImpl", + "extension": ".java", + "size": 4785, + "date": "2010-11-13", + "sha1": "bbd3be16c20910d708f6272f5a082fc45b400b8f", + "md5": "18a4c2ebde700091e1c2de8f285b8ee6", + "sha256": "bb23c2ed91cdbf0df7720be5cff437d83f07e361910dbf8bcf1b80b68eaedadc", + "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" + ], + "percentage_of_license_text": 33.56, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/NoConnectionReuseStrategy.java", + "type": "file", + "name": "NoConnectionReuseStrategy.java", + "base_name": "NoConnectionReuseStrategy", + "extension": ".java", + "size": 1946, + "date": "2010-11-13", + "sha1": "2e88be3e8bd03bd318b54e70f12bd6d3e8cc8771", + "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" + ], + "percentage_of_license_text": 66.37, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1322, + "date": "2010-11-13", + "sha1": "9083591a4633127045b16597b3d84a003bd8b01c", + "md5": "086cc6ac8fadd17585924886f863d8a7", + "sha256": "0dc0c227baf5cbacd3c8d6647bdc1d14c3bfd0da51b314a3f1ffdb9c48ac8ab9", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 90.36, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/SocketHttpClientConnection.java", + "type": "file", + "name": "SocketHttpClientConnection.java", + "base_name": "SocketHttpClientConnection", + "extension": ".java", + "size": 8710, + "date": "2010-11-13", + "sha1": "1112ab430be5d25afcf611678425d6e033f11233", + "md5": "d2586a6127ab86143db2d3c6400ba66a", + "sha256": "85ddaa12b1036d3fc08542f3d9c9e1f5002793e0e70d8e28cf037feec89bace7", + "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" + ], + "percentage_of_license_text": 17.06, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/SocketHttpServerConnection.java", + "type": "file", + "name": "SocketHttpServerConnection.java", + "base_name": "SocketHttpServerConnection", + "extension": ".java", + "size": 9375, + "date": "2010-11-13", + "sha1": "63da5106c1072a70e8fe170edf5bcfbfc9784a0b", + "md5": "3de0fad0b8f239929a8d4c706d2aa143", + "sha256": "79351941f73641aed3a6b92286845ed9670d7de28a9979bb0a616ee55f95e965", + "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" + ], + "percentage_of_license_text": 16.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity", + "type": "directory", + "name": "entity", + "base_name": "entity", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 5, + "dirs_count": 0, + "size_count": 21120, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity/EntityDeserializer.java", + "type": "file", + "name": "EntityDeserializer.java", + "base_name": "EntityDeserializer", + "extension": ".java", + "size": 5590, + "date": "2010-11-13", + "sha1": "12e8954a96ecf13892b7b8c6727479f9a5173c5b", + "md5": "33459bcd52ebad71667a596c56509849", + "sha256": "1df8c3a40c50a7e5bb5ab17f53b8acb21f313811a5362585845ad8e590d491bf", + "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" + ], + "percentage_of_license_text": 24.96, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity/EntitySerializer.java", + "type": "file", + "name": "EntitySerializer.java", + "base_name": "EntitySerializer", + "extension": ".java", + "size": 4797, + "date": "2010-11-13", + "sha1": "c4635ad33e925d343710055a86b7338e30356edc", + "md5": "5bb76c5fe2804ac1b9b2738d5c09a680", + "sha256": "0f38fbfc2cd314295e953a2dc21eb7d6c0dc94190df1585d780286b4e9582ffd", + "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" + ], + "percentage_of_license_text": 27.88, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity/LaxContentLengthStrategy.java", + "type": "file", + "name": "LaxContentLengthStrategy.java", + "base_name": "LaxContentLengthStrategy", + "extension": ".java", + "size": 5640, + "date": "2010-11-13", + "sha1": "5371bdee192f768887308da504f50793752d58b3", + "md5": "501dffb2af310563df21ef66f0948373", + "sha256": "e5a61377efc414f6e1be01d8a2c7799e56be3e1f6f2fe6a0be8216ee2f100099", + "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" + ], + "percentage_of_license_text": 26.83, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1428, + "date": "2010-11-13", + "sha1": "260b6466229a20b6758971d4ce808578f023ec55", + "md5": "c8342209f92a1c672e303cfae470495d", + "sha256": "27570e118d8d0d806aacfb3f2a02af28f00b1bade620f98fb03cd5996b8b8f21", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 83.33, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/entity/StrictContentLengthStrategy.java", + "type": "file", + "name": "StrictContentLengthStrategy.java", + "base_name": "StrictContentLengthStrategy", + "extension": ".java", + "size": 3665, + "date": "2010-11-13", + "sha1": "03329a1d64525f4bee1b2e1f6aa6289388672e01", + "md5": "c7dbcb512c9aa38b09996da40afd73d8", + "sha256": "645d792f910516795e6c6472966484651fd127484cde7fa546a067a31da6a335", + "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" + ], + "percentage_of_license_text": 40.11, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io", + "type": "directory", + "name": "io", + "base_name": "io", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 18, + "dirs_count": 0, + "size_count": 90996, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/AbstractMessageParser.java", + "type": "file", + "name": "AbstractMessageParser.java", + "base_name": "AbstractMessageParser", + "extension": ".java", + "size": 10918, + "date": "2010-11-13", + "sha1": "bcce8bd96a89c8613e0b76151b62bdd94f6646cf", + "md5": "32fd104303cd6a7c7f1209b7cac4b8f4", + "sha256": "44b09128fe6ff5a6487c02aff0be592782e034fdabb3096c03bfbcee79ee2692", + "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" + ], + "percentage_of_license_text": 12.83, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/AbstractMessageWriter.java", + "type": "file", + "name": "AbstractMessageWriter.java", + "base_name": "AbstractMessageWriter", + "extension": ".java", + "size": 3720, + "date": "2010-11-13", + "sha1": "6f3cddc463dcb271dd50a8f89acc6875e18c78d8", + "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" + ], + "percentage_of_license_text": 36.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/AbstractSessionInputBuffer.java", + "type": "file", + "name": "AbstractSessionInputBuffer.java", + "base_name": "AbstractSessionInputBuffer", + "extension": ".java", + "size": 12532, + "date": "2010-11-13", + "sha1": "280d25c38fcd782d5712f50812ac7048ee00e460", + "md5": "9dc43ca7d2ee33d618527332bbeb745b", + "sha256": "fbbc984818b04736b574c7b7c41f9c977e3b29de4aea2e1a545cda05dcd0fe8a", + "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" + ], + "percentage_of_license_text": 11.1, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/AbstractSessionOutputBuffer.java", + "type": "file", + "name": "AbstractSessionOutputBuffer.java", + "base_name": "AbstractSessionOutputBuffer", + "extension": ".java", + "size": 7877, + "date": "2010-11-13", + "sha1": "155392d94dbf53e4049eaaf30bdf5ec193dba293", + "md5": "ec56d965e6187c324a79287426c48a50", + "sha256": "c072a70ccb3d602dbda20f7a4eca44bbce10e0051fdc9d013917b793a783ecec", + "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" + ], + "percentage_of_license_text": 17.94, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/ChunkedInputStream.java", + "type": "file", + "name": "ChunkedInputStream.java", + "base_name": "ChunkedInputStream", + "extension": ".java", + "size": 9912, + "date": "2010-11-13", + "sha1": "91043294ca1b4fb0ed29d0922306e8b81f575c42", + "md5": "ba2dde5aa97a4d679cfb0d3b52518abb", + "sha256": "0e02da42df74a94ef0da912961f281a860675caf04d9f83ab70dbedee4cf00d9", + "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" + ], + "percentage_of_license_text": 13.38, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/ChunkedOutputStream.java", + "type": "file", + "name": "ChunkedOutputStream.java", + "base_name": "ChunkedOutputStream", + "extension": ".java", + "size": 6307, + "date": "2010-11-13", + "sha1": "66c8fe3947e0be3318383470912e99f7607ee97b", + "md5": "cce443a4dcd5dcdcf1c1211c3ad19b26", + "sha256": "645357ff47229298125f4027c1177db707842faa5c60f9a1985b6608911997f7", + "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" + ], + "percentage_of_license_text": 21.52, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/ContentLengthInputStream.java", + "type": "file", + "name": "ContentLengthInputStream.java", + "base_name": "ContentLengthInputStream", + "extension": ".java", + "size": 7030, + "date": "2010-11-13", + "sha1": "0b09d7e84096c5a55272fec7dc535b974ad74499", + "md5": "ae143ddebed739724dce2331c1d2b470", + "sha256": "cf235ad44a169cb9b40a18ad9e3e203fb8e5697676bc57e6835a828029a29360", + "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" + ], + "percentage_of_license_text": 17.26, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/ContentLengthOutputStream.java", + "type": "file", + "name": "ContentLengthOutputStream.java", + "base_name": "ContentLengthOutputStream", + "extension": ".java", + "size": 4284, + "date": "2010-11-13", + "sha1": "1f37392e84a4484632e54df1c3b298d2090ddffd", + "md5": "62e03d8bb63c167b80025c10b52d7849", + "sha256": "3b613eb6a005542703f75ce06a7a780413381726cd384f8d18bfb44e7f152e54", + "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" + ], + "percentage_of_license_text": 29.47, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/HttpRequestParser.java", + "type": "file", + "name": "HttpRequestParser.java", + "base_name": "HttpRequestParser", + "extension": ".java", + "size": 3636, + "date": "2010-11-13", + "sha1": "778c9b6c2006b609af7ca049cb97be3bb9aa1045", + "md5": "112aa27859aba3b356f2dd678b27409f", + "sha256": "2dd797b2a47c2ca998c3599bce364d9e3ac63b5e4c46b6b7492d43fd9d9f1a8c", + "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" + ], + "percentage_of_license_text": 37.5, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/HttpRequestWriter.java", + "type": "file", + "name": "HttpRequestWriter.java", + "base_name": "HttpRequestWriter", + "extension": ".java", + "size": 2137, + "date": "2010-11-13", + "sha1": "4aa8cc0f3d6d6f8e2276aecb5155b889ad14e08b", + "md5": "dafae3b63648cf115bcf14ccfd6c886b", + "sha256": "f08077f013924642aaf4142f34799102f8606a08c331c78a02e4b0c376a090c0", + "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" + ], + "percentage_of_license_text": 61.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/HttpResponseParser.java", + "type": "file", + "name": "HttpResponseParser.java", + "base_name": "HttpResponseParser", + "extension": ".java", + "size": 3712, + "date": "2010-11-13", + "sha1": "63eb075d35ff008367c00356ba4204c6bcab33c1", + "md5": "d5c4887050b3d16fd8dbb8d9a19fb6a9", + "sha256": "68afb93dc6e5a049d76d8cc45b9f10c478757388a7ad3b1163c5d18aad7e68f3", + "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" + ], + "percentage_of_license_text": 36.5, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/HttpResponseWriter.java", + "type": "file", + "name": "HttpResponseWriter.java", + "base_name": "HttpResponseWriter", + "extension": ".java", + "size": 2142, + "date": "2010-11-13", + "sha1": "01b458af1e0e94a1bb43fa235ae65a74aab35521", + "md5": "cc16f6fa8fb45c91e8d552dc59732310", + "sha256": "44c9188ec37f89bb236f81ad666ae35ae8722f95a3eda20b37757c8400c0dfcf", + "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" + ], + "percentage_of_license_text": 61.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/HttpTransportMetricsImpl.java", + "type": "file", + "name": "HttpTransportMetricsImpl.java", + "base_name": "HttpTransportMetricsImpl", + "extension": ".java", + "size": 1883, + "date": "2010-11-13", + "sha1": "964bc9544d21664e30a4e4f3a1e65be06774e3ed", + "md5": "7de62456a756faa3377ea82dfc2585f3", + "sha256": "11613c88aaf4bec726b63204d7e4d148ea7cf3ae222d48f0fc44028726977d7f", + "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" + ], + "percentage_of_license_text": 71.77, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/IdentityInputStream.java", + "type": "file", + "name": "IdentityInputStream.java", + "base_name": "IdentityInputStream", + "extension": ".java", + "size": 2977, + "date": "2010-11-13", + "sha1": "6aad7307fa4218755f9bc6b4526d5b53458b3408", + "md5": "4d7a0936234ded44732ee7a791e2e9fd", + "sha256": "31e7772e1b64c72144b10f6d1bd82186b8e88efccc8d23b8a65c8a974d8d0232", + "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" + ], + "percentage_of_license_text": 41.55, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/IdentityOutputStream.java", + "type": "file", + "name": "IdentityOutputStream.java", + "base_name": "IdentityOutputStream", + "extension": ".java", + "size": 3129, + "date": "2010-11-13", + "sha1": "9371bad68c344a7b956232d967cb1e6ea8d4b14b", + "md5": "29c7ffdd3ee6b33090b7a78a89355f17", + "sha256": "839c8403418fe23528458a0b93a25f132b3a0ed8c3379b2564ac2e0ee774f4d2", + "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" + ], + "percentage_of_license_text": 39.68, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1575, + "date": "2010-11-13", + "sha1": "2773d92f35d6b1cbd88d221537cdd7e3480b44d4", + "md5": "d7f739a638f8d618fa86e448dfb6fab8", + "sha256": "b87368cd67f0eebb8c3389296fa7cfa24d6dc7811d28d7c4738252442e7c115b", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 74.26, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/SocketInputBuffer.java", + "type": "file", + "name": "SocketInputBuffer.java", + "base_name": "SocketInputBuffer", + "extension": ".java", + "size": 4559, + "date": "2010-11-13", + "sha1": "ed5a7f617e2bd32866f075fdde93993d3ea7b8c7", + "md5": "7ad0156ab3453dd645c31b0c09fce666", + "sha256": "bac1089de574289706c37ee67400093cbcba79405c8343626e7716c64b59ded4", + "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" + ], + "percentage_of_license_text": 32.12, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/impl/io/SocketOutputBuffer.java", + "type": "file", + "name": "SocketOutputBuffer.java", + "base_name": "SocketOutputBuffer", + "extension": ".java", + "size": 2666, + "date": "2010-11-13", + "sha1": "4c8bec5f77362b6053748a8b27fc868b578f8419", + "md5": "46911baf8fcf82efdbf2a3bb48fcb4d5", + "sha256": "a509d709f958e8930e8961845bd7472dfa4afabe8c5d963597fe78fb02026d2b", + "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" + ], + "percentage_of_license_text": 48.23, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io", + "type": "directory", + "name": "io", + "base_name": "io", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 8, + "dirs_count": 0, + "size_count": 20210, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/BufferInfo.java", + "type": "file", + "name": "BufferInfo.java", + "base_name": "BufferInfo", + "extension": ".java", + "size": 1657, + "date": "2010-11-13", + "sha1": "a451af2065ac796e9de471a8ac53034436034cb7", + "md5": "b8763fd788c1db07baa06eeb368310ef", + "sha256": "af62facfbe355811640ec108d26807e9a921d60e5765bcac649aa61ab6ab0b54", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 75.76, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/EofSensor.java", + "type": "file", + "name": "EofSensor.java", + "base_name": "EofSensor", + "extension": ".java", + "size": 1308, + "date": "2010-11-13", + "sha1": "bde59919372a2d411f44e64e41dc46765b0255a3", + "md5": "032533537374e9f15b550d92d5080fb9", + "sha256": "239cec87cb66f3e92f7c92cfcfaaf5010b09025d5c511ce2e089aebdcc2a3ad1", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 90.91, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/HttpMessageParser.java", + "type": "file", + "name": "HttpMessageParser.java", + "base_name": "HttpMessageParser", + "extension": ".java", + "size": 1802, + "date": "2010-11-13", + "sha1": "a0d773abf026d0cf22da1ea6d4b70d54c81af45d", + "md5": "37a5af5c76f9a3da04f4aaf3d216b7bf", + "sha256": "f041200d426d06451f81ce0e6ae627c6cb5ccb5dd36fd9373a7cc8b6df38279c", + "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" + ], + "percentage_of_license_text": 66.96, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/HttpMessageWriter.java", + "type": "file", + "name": "HttpMessageWriter.java", + "base_name": "HttpMessageWriter", + "extension": ".java", + "size": 1805, + "date": "2010-11-13", + "sha1": "acc7b93dd94582725212afc4a3fec8595d15b359", + "md5": "b45ee1c107e2fd7e85cf514d1484dc17", + "sha256": "c10865e702feb320b68286f834f1ee549c70a6449d38aa84e6e6d029d0fc9786", + "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" + ], + "percentage_of_license_text": 66.67, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/HttpTransportMetrics.java", + "type": "file", + "name": "HttpTransportMetrics.java", + "base_name": "HttpTransportMetrics", + "extension": ".java", + "size": 1545, + "date": "2010-11-13", + "sha1": "dda133066859bfcdef3cb3969660e376a38b9102", + "md5": "bfd0e891747c99d791fd21bab316ff98", + "sha256": "ba16aa1ffd17afc3d8e959e0f30d6366fa5e6de9ac1a14aedcbaa26b652c355b", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 80.21, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1393, + "date": "2010-11-13", + "sha1": "8b6848fb2b344845cc90d4bb6efe3a2b1041da04", + "md5": "69b2fbf87ac3d063848dabb2558a00e6", + "sha256": "8baf127027fd109a7447e45726fcda44edc3e9e81c0717396e5c048cb7beab7d", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 85.23, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/SessionInputBuffer.java", + "type": "file", + "name": "SessionInputBuffer.java", + "base_name": "SessionInputBuffer", + "extension": ".java", + "size": 6382, + "date": "2010-11-13", + "sha1": "bbd5dea1214626b80f4ff7d189b53323b0ba4f47", + "md5": "4725bd498f534c9d645cc389c57c63f9", + "sha256": "6ab9d9204ff4ec7cc2eb883d61637486519e024385417f6d28f09b4b2831cd22", + "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" + ], + "percentage_of_license_text": 17.1, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/io/SessionOutputBuffer.java", + "type": "file", + "name": "SessionOutputBuffer.java", + "base_name": "SessionOutputBuffer", + "extension": ".java", + "size": 4318, + "date": "2010-11-13", + "sha1": "943960df12585acaa25424d19a76b824cfac6f53", + "md5": "9bebe9c4e12cc339a4018179889bb408", + "sha256": "bdeb303c6155621582b986dd76cad8cc3e5191f9b607cab439503293f40ef0e0", + "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" + ], + "percentage_of_license_text": 27.68, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message", + "type": "directory", + "name": "message", + "base_name": "message", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 25, + "dirs_count": 0, + "size_count": 161179, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/AbstractHttpMessage.java", + "type": "file", + "name": "AbstractHttpMessage.java", + "base_name": "AbstractHttpMessage", + "extension": ".java", + "size": 5025, + "date": "2010-11-13", + "sha1": "9a42d7d775119bfd8b7c8e2612003071fb998db9", + "md5": "d28cc78ce578c548cc11a4470102df63", + "sha256": "a046970081199a56bda5da47dbaf2062a2ed789038095e0c04ac476188a2dedc", + "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" + ], + "percentage_of_license_text": 28.3, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeader.java", + "type": "file", + "name": "BasicHeader.java", + "base_name": "BasicHeader", + "extension": ".java", + "size": 2758, + "date": "2010-11-13", + "sha1": "14cb1671a2beefd0a2cd15cae74f68f6b2f16d0c", + "md5": "730ae711e4b574ed4c6f86af71f37dd5", + "sha256": "bf49a25695873a27916507927eb6207bc6e157f690694e9956cd97007bb3d9ee", + "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" + ], + "percentage_of_license_text": 48.54, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeaderElement.java", + "type": "file", + "name": "BasicHeaderElement.java", + "base_name": "BasicHeaderElement", + "extension": ".java", + "size": 5118, + "date": "2010-11-13", + "sha1": "a2fb9cb773ca7123f9a216c07985036e23354c60", + "md5": "519ecf6d73a71ad96675bf0c4180628b", + "sha256": "10a4a1ae058d83a35779aeecbc1b446b41392da3e31d426d88a831ac4984694a", + "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" + ], + "percentage_of_license_text": 27.78, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeaderElementIterator.java", + "type": "file", + "name": "BasicHeaderElementIterator.java", + "base_name": "BasicHeaderElementIterator", + "extension": ".java", + "size": 5318, + "date": "2010-11-13", + "sha1": "ea37d89184c7b66bc590efa97d5a011251ded313", + "md5": "de38ccd204f298912fbe91335ebf59b6", + "sha256": "678acd955f3630bee143891e92e967308388c05aedda7ecb75a638cb925595eb", + "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" + ], + "percentage_of_license_text": 30.36, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeaderIterator.java", + "type": "file", + "name": "BasicHeaderIterator.java", + "base_name": "BasicHeaderIterator", + "extension": ".java", + "size": 5098, + "date": "2010-11-13", + "sha1": "2e5d2a6c8c23c9445f4cf0ad8b19552f0f2ba841", + "md5": "e8d9c5bb3a86365e63caa42f412f66d8", + "sha256": "6e4f2bef011a99d28e147e3e1470f7cc5c04736f7b8e76c13a9e1dc24ae1affa", + "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" + ], + "percentage_of_license_text": 26.55, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeaderValueFormatter.java", + "type": "file", + "name": "BasicHeaderValueFormatter.java", + "base_name": "BasicHeaderValueFormatter", + "extension": ".java", + "size": 13988, + "date": "2010-11-13", + "sha1": "a5710d3d1ae01960607981c7d0d1b3724770c8f5", + "md5": "cecc867a85ee481819545d6f90bbf4ab", + "sha256": "1994c47ce2ca01f7ac5233de27db3d44acdc55886a9bf9c26794d766e55d0f96", + "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" + ], + "percentage_of_license_text": 11.22, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHeaderValueParser.java", + "type": "file", + "name": "BasicHeaderValueParser.java", + "base_name": "BasicHeaderValueParser", + "extension": ".java", + "size": 13140, + "date": "2010-11-13", + "sha1": "73b5947c03c8f0c36bac961b4bf8e24a5d244016", + "md5": "5f09fa89a7c15deee0b494612f294b24", + "sha256": "6c9d52aeae1f2925891e995e6b960f58cbe9e8357295867fce3d0d92db8781d9", + "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" + ], + "percentage_of_license_text": 12.39, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHttpEntityEnclosingRequest.java", + "type": "file", + "name": "BasicHttpEntityEnclosingRequest.java", + "base_name": "BasicHttpEntityEnclosingRequest", + "extension": ".java", + "size": 2449, + "date": "2010-11-13", + "sha1": "2661e29083919cc00b79bdb4bf8ffeef92541bd3", + "md5": "bb2e54f11e5f24e72ff3b082116547a9", + "sha256": "3202e673da8530d085e73ec6f9649118308be544e2a2228e49364c7c54e44ef3", + "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" + ], + "percentage_of_license_text": 55.76, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHttpRequest.java", + "type": "file", + "name": "BasicHttpRequest.java", + "base_name": "BasicHttpRequest", + "extension": ".java", + "size": 4709, + "date": "2010-11-13", + "sha1": "e2a49cab5e94ff54165ac5a69cb56b614cd0a80d", + "md5": "e01bb5c458a30b4eb5e87459428a3391", + "sha256": "61901d7802c9e6668011f1ef587ce8e9dc4be4293349a47709ae8a6f00b2c051", + "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" + ], + "percentage_of_license_text": 28.41, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicHttpResponse.java", + "type": "file", + "name": "BasicHttpResponse.java", + "base_name": "BasicHttpResponse", + "extension": ".java", + "size": 7039, + "date": "2010-11-13", + "sha1": "0e0c69290347151e1f21f20f0bfc144de5864d14", + "md5": "229e2dcbcad9fa5b171fcb39663768be", + "sha256": "ec41a4c9dd0d2e5dc0b29cba8bcc3ff09cda55e95290c7afc24bf1c02e34a0f8", + "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" + ], + "percentage_of_license_text": 21.07, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicLineFormatter.java", + "type": "file", + "name": "BasicLineFormatter.java", + "base_name": "BasicLineFormatter", + "extension": ".java", + "size": 11342, + "date": "2010-11-13", + "sha1": "8afa64fea967817fb1537b676a63b411dcd31295", + "md5": "190becf2abe9ca893d29d3498e86dcad", + "sha256": "4dfe11315633be6c1a3b9ac375dfd6c15a78df2c248214cd06152e067036b046", + "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" + ], + "percentage_of_license_text": 13.85, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicLineParser.java", + "type": "file", + "name": "BasicLineParser.java", + "base_name": "BasicLineParser", + "extension": ".java", + "size": 16579, + "date": "2010-11-13", + "sha1": "f76e18fc4371ed0dd4570886cc1e8cb415f518e5", + "md5": "c7f41e8a5b8dba5d742bdb9bbb091314", + "sha256": "3c706891b57c4fe02d93db8db9372c56061fbf6789cf6695a7f73f6b79594cf4", + "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" + ], + "percentage_of_license_text": 9.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicListHeaderIterator.java", + "type": "file", + "name": "BasicListHeaderIterator.java", + "base_name": "BasicListHeaderIterator", + "extension": ".java", + "size": 5503, + "date": "2010-11-13", + "sha1": "5b6015f6caa0b22fabbff1119846b708b1e7d4e3", + "md5": "7c4c4a7390a47d7fd44f5eb05363f965", + "sha256": "8bcc36dd024a3c81a7c7e18d5b5e9354eea8828ea83fe688cc4e841b10869c58", + "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" + ], + "percentage_of_license_text": 24.31, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicNameValuePair.java", + "type": "file", + "name": "BasicNameValuePair.java", + "base_name": "BasicNameValuePair", + "extension": ".java", + "size": 3408, + "date": "2010-11-13", + "sha1": "d524a85abd584cda752dfb8fd12594adf1c9ef06", + "md5": "4745fc159f2f7779791b0856708a9149", + "sha256": "53a8d518947f9bc30fda99d17f4e297d7de6089601f2be6add5fc927ff8fe3ff", + "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" + ], + "percentage_of_license_text": 39.89, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicRequestLine.java", + "type": "file", + "name": "BasicRequestLine.java", + "base_name": "BasicRequestLine", + "extension": ".java", + "size": 2854, + "date": "2010-11-13", + "sha1": "202e265c0fba335068e4af1d50a06e9294a40698", + "md5": "843cb6faf02b661f37c070faef61c56d", + "sha256": "499e922c6e19e6c1c212ad91482eb6909c6df633a2bc8aff01a06df4c7d05b35", + "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" + ], + "percentage_of_license_text": 50, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicStatusLine.java", + "type": "file", + "name": "BasicStatusLine.java", + "base_name": "BasicStatusLine", + "extension": ".java", + "size": 3532, + "date": "2010-11-13", + "sha1": "5a5893ea5dc10959b978e928e0f14d49ac57f6d2", + "md5": "925455e7aa2712ec710639eaff52d979", + "sha256": "fa0cdeea5593fac415b64969f570908ca0ca188688c7d2d2ea4610b15bc70b21", + "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" + ], + "percentage_of_license_text": 42.25, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BasicTokenIterator.java", + "type": "file", + "name": "BasicTokenIterator.java", + "base_name": "BasicTokenIterator", + "extension": ".java", + "size": 14664, + "date": "2010-11-13", + "sha1": "6482ffea3c6484bbb71a6690dd53a55b2bf578ef", + "md5": "2e730da8b8383f8a031c82ee621ab504", + "sha256": "2893fecc5242f4fb64aaea246c27dcc6d76d4c8e04798abe4d999556e88109ef", + "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" + ], + "percentage_of_license_text": 9.39, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/BufferedHeader.java", + "type": "file", + "name": "BufferedHeader.java", + "base_name": "BufferedHeader", + "extension": ".java", + "size": 3883, + "date": "2010-11-13", + "sha1": "9f34be4657c037f393ab1e97483cdcdd9e0595f6", + "md5": "4805914bf83a91271425949e63eae2a6", + "sha256": "dc9909adf83d701d378f8c575314a1ca64c7f7ae057863092f38b81069f42202", + "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" + ], + "percentage_of_license_text": 35.97, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/HeaderGroup.java", + "type": "file", + "name": "HeaderGroup.java", + "base_name": "HeaderGroup", + "extension": ".java", + "size": 9011, + "date": "2010-11-13", + "sha1": "dc2da1cbdc3d57fd190b9aea755d4de5efe3b1c7", + "md5": "8d1bef5a11b52d7ddc1891ff4627e455", + "sha256": "13c930e0c47cf54855ca8d8aef41d5f3ee20c6bc39f6e6ad65296253e4bdf303", + "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" + ], + "percentage_of_license_text": 14.49, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/HeaderValueFormatter.java", + "type": "file", + "name": "HeaderValueFormatter.java", + "base_name": "HeaderValueFormatter", + "extension": ".java", + "size": 5209, + "date": "2010-11-13", + "sha1": "04a0ca72a8cdba1652da3ebea664208f181bc29d", + "md5": "3aed38ad6a7ac4d3ff9e054e97895a7d", + "sha256": "4bebb7d1dda14cedd3648d9e89ad1d62df79cda54e220265496c6668f2d083fa", + "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" + ], + "percentage_of_license_text": 24.75, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/HeaderValueParser.java", + "type": "file", + "name": "HeaderValueParser.java", + "base_name": "HeaderValueParser", + "extension": ".java", + "size": 5168, + "date": "2010-11-13", + "sha1": "f38659f0b25e537cd16485fce1154c3d0459c1e3", + "md5": "017243009eb58a5c6f5da720bd277ead", + "sha256": "d43303a845a44817ce6b4713a11132a68008b14f13a32e7e705a6c4b2b2e6074", + "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" + ], + "percentage_of_license_text": 25.55, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/LineFormatter.java", + "type": "file", + "name": "LineFormatter.java", + "base_name": "LineFormatter", + "extension": ".java", + "size": 5335, + "date": "2010-11-13", + "sha1": "c3cf87e17dd359d38088d8460f35cda7a8138257", + "md5": "a7f0e98ee58d7892a9153d970e09ad6b", + "sha256": "532ccfe6541ba8a5d1b385f033db37a1497f171d1a2448ce035f878b05c3c5bd", + "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" + ], + "percentage_of_license_text": 23.11, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/LineParser.java", + "type": "file", + "name": "LineParser.java", + "base_name": "LineParser", + "extension": ".java", + "size": 5363, + "date": "2010-11-13", + "sha1": "db4f1946169f89317a6bfd7e44cceb4f84491cb0", + "md5": "ddff469560010c1bb7e0272b4b794b91", + "sha256": "10d4c06250b2f7358514df0e697092859dc775a76891d8b5d912fbf8695ab206", + "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" + ], + "percentage_of_license_text": 24.12, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1546, + "date": "2010-11-13", + "sha1": "2b0f5e66f409b5f9206672efea2e8cc1ee1a0f4f", + "md5": "7ba0c4a30071678d62497a708750ce56", + "sha256": "96635bfcda2f7f1d3cf880965eea48cad5ad1e8dd14279160f73a98b0f4e3e64", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 78.12, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/message/ParserCursor.java", + "type": "file", + "name": "ParserCursor.java", + "base_name": "ParserCursor", + "extension": ".java", + "size": 3140, + "date": "2010-11-13", + "sha1": "63e7107771baa81115c9e88a8ebc5b0d98117f4b", + "md5": "9065de4d95363847a7995d3fe15b41b6", + "sha256": "dc2b1b73794cbeb57160cc9d1601a862a783ad882ca7815af1c070397ea3e9a1", + "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" + ], + "percentage_of_license_text": 44.25, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params", + "type": "directory", + "name": "params", + "base_name": "params", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 13, + "dirs_count": 0, + "size_count": 54224, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/AbstractHttpParams.java", + "type": "file", + "name": "AbstractHttpParams.java", + "base_name": "AbstractHttpParams", + "extension": ".java", + "size": 3451, + "date": "2010-11-13", + "sha1": "0401305548fb392a2de0f99627cef7fee68cf6cb", + "md5": "45d0c242d18883764ec0e818b334644f", + "sha256": "cbf2d0c536f162cc0e2a73f920601f3a1dd7ebc067c9bc37c89d237075ac6ec2", + "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" + ], + "percentage_of_license_text": 41.67, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/BasicHttpParams.java", + "type": "file", + "name": "BasicHttpParams.java", + "base_name": "BasicHttpParams", + "extension": ".java", + "size": 5093, + "date": "2010-11-13", + "sha1": "6c8c7474d6497cb9099e78cbf00b664b63d81c1d", + "md5": "25b46f8fef19f7841cbbbbc72aedf58a", + "sha256": "2c00d90d9fe96d1f1d7c97ad06d4158c09fd802841ea9aea647bf90dd4a490ae", + "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" + ], + "percentage_of_license_text": 26.79, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/CoreConnectionPNames.java", + "type": "file", + "name": "CoreConnectionPNames.java", + "base_name": "CoreConnectionPNames", + "extension": ".java", + "size": 6052, + "date": "2010-11-13", + "sha1": "4fcf871dd397743bacc65231444ceb30270b90a8", + "md5": "36cdb8ceec2dc09fe318ba49ec22d104", + "sha256": "fd63c3e365fbd73b6adf379a98e5f987e3a87acb6106bc6e667dcbb4e5242800", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 19.97, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/CoreProtocolPNames.java", + "type": "file", + "name": "CoreProtocolPNames.java", + "base_name": "CoreProtocolPNames", + "extension": ".java", + "size": 4315, + "date": "2010-11-13", + "sha1": "004b8802e57c03ab1b5329524b6e89e7898eb7e7", + "md5": "18ae868f3effc07b483851451101f1d1", + "sha256": "8233c020c99b5b15bfc06f6ef97a2c325ace82f935002045c4099d65af87e762", + "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" + ], + "percentage_of_license_text": 29.59, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/DefaultedHttpParams.java", + "type": "file", + "name": "DefaultedHttpParams.java", + "base_name": "DefaultedHttpParams", + "extension": ".java", + "size": 3317, + "date": "2010-11-13", + "sha1": "22df83abee8830c832d4af4892b08bb6ae570fc5", + "md5": "22db53da6aed60455fd453a9f2094538", + "sha256": "9407cdb0030602c84d4502db4cac36b7e58dbf88804b9ea71d8c63bfd6cc9149", + "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" + ], + "percentage_of_license_text": 38.46, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpAbstractParamBean.java", + "type": "file", + "name": "HttpAbstractParamBean.java", + "base_name": "HttpAbstractParamBean", + "extension": ".java", + "size": 1538, + "date": "2010-11-13", + "sha1": "cbeac10e6fa8cc1ab09bdbee3e9b0a34b0eda3a1", + "md5": "5f48f2896ae7d7e1d6b382ce87542e3e", + "sha256": "6c78da7bd2e58a6341d9327d59f0d110de29ca7944c875f31818338c8e7d4144", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 81.08, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpConnectionParamBean.java", + "type": "file", + "name": "HttpConnectionParamBean.java", + "base_name": "HttpConnectionParamBean", + "extension": ".java", + "size": 2374, + "date": "2010-11-13", + "sha1": "82bf253bcd11121d5174b1cafa7fcbc1f83e5681", + "md5": "e35f79084be7512e9e464d83dba72abb", + "sha256": "efbb66d76226c9103d0230406fe879f65b384911561b678261d9021edab39b97", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 60.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpConnectionParams.java", + "type": "file", + "name": "HttpConnectionParams.java", + "base_name": "HttpConnectionParams", + "extension": ".java", + "size": 8435, + "date": "2010-11-13", + "sha1": "7dbff412260f193b78ee012d4cb60faf27650c33", + "md5": "1edfec17ea306a124a40538d682843d7", + "sha256": "43dc7643875fe47beccb8584803d14a29bf7c6092c9dd90a2c57f258faf3efb2", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 17.56, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpParams.java", + "type": "file", + "name": "HttpParams.java", + "base_name": "HttpParams", + "extension": ".java", + "size": 6551, + "date": "2010-11-13", + "sha1": "b120d3eb0d015196a05639f57fa255477ecc4e6f", + "md5": "fb00ea455101bb155d1036827b484563", + "sha256": "d18dfb7ec3ee04818b3733be46172f7cfb0c2bb94362665d0d2984c9d51c8c63", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 18.82, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpProtocolParamBean.java", + "type": "file", + "name": "HttpProtocolParamBean.java", + "base_name": "HttpProtocolParamBean", + "extension": ".java", + "size": 2300, + "date": "2010-11-13", + "sha1": "1eb1027b36e512b3d26a9c7eae61cdcb88ceac0d", + "md5": "5bd716969bb1d6788028a8e263124786", + "sha256": "823a4db74e1dd7c6082577662859d2378bd9071b8c6f1501b8601302962e7377", + "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" + ], + "percentage_of_license_text": 60.73, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/HttpProtocolParams.java", + "type": "file", + "name": "HttpProtocolParams.java", + "base_name": "HttpProtocolParams", + "extension": ".java", + "size": 7012, + "date": "2010-11-13", + "sha1": "388905a2839b997ceae198b0929fa716d36f27d4", + "md5": "17119c9df7dfa326ad9b462a6b1e9b4e", + "sha256": "3e0e6490a048051a8ad40f253a6fd57e92f995d8112e0137f50c9d84108c0bc6", + "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" + ], + "percentage_of_license_text": 20.72, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1351, + "date": "2010-11-13", + "sha1": "d9d41dc12a6ba536473f59b602648d028fc4d354", + "md5": "286689793a4e57978e42efbb6f76632c", + "sha256": "191cbd4e0fb162cae7ffc28bd0d0bcc371df34ecf05138bfbd4689190ff868ca", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 88.24, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/params/SyncBasicHttpParams.java", + "type": "file", + "name": "SyncBasicHttpParams.java", + "base_name": "SyncBasicHttpParams", + "extension": ".java", + "size": 2435, + "date": "2010-11-13", + "sha1": "abd359da40b7f4a818cddcdb84d4dbef5d89f6c8", + "md5": "2ccfe245e111374cf873923d4e2d9954", + "sha256": "641f1fa83e3bc01525ecf0e0dc05040d1c6eec5ea0f7e47463fa2f15daa3fa13", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 56.39, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol", + "type": "directory", + "name": "protocol", + "base_name": "protocol", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 30, + "dirs_count": 0, + "size_count": 117337, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/BasicHttpContext.java", + "type": "file", + "name": "BasicHttpContext.java", + "base_name": "BasicHttpContext", + "extension": ".java", + "size": 2763, + "date": "2010-11-13", + "sha1": "c4624809af7d770dd989d0eb639dada0fda7f769", + "md5": "bf801cbaed9b8caa9683982b532dfd5f", + "sha256": "929e4a95e36c0c5d204a7bde80cc3281a5c4767339d407d644fd3c9b64555af5", + "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" + ], + "percentage_of_license_text": 47.77, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/BasicHttpProcessor.java", + "type": "file", + "name": "BasicHttpProcessor.java", + "base_name": "BasicHttpProcessor", + "extension": ".java", + "size": 8321, + "date": "2010-11-13", + "sha1": "0c19c07eb2071fe7e620461d28f3b71fbdbdaacb", + "md5": "eca4d1d7a9d341f8b748881423fddeba", + "sha256": "3bd4fa8860f4a20930ea39d9950a1464ef4421cb758ecb62422966b03277a61d", + "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" + ], + "percentage_of_license_text": 19.71, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/DefaultedHttpContext.java", + "type": "file", + "name": "DefaultedHttpContext.java", + "base_name": "DefaultedHttpContext", + "extension": ".java", + "size": 2506, + "date": "2010-11-13", + "sha1": "515dc3d534b188cfa81d040576f88d87fadeb0a7", + "md5": "9f58dbda2e5bfb06dfcb9574cbd0c8ac", + "sha256": "ea57f0cedc41ad08ddfdfbd241652644ebb49dfd496d78c82d76ee522dd034de", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 50.68, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ExecutionContext.java", + "type": "file", + "name": "ExecutionContext.java", + "base_name": "ExecutionContext", + "extension": ".java", + "size": 2626, + "date": "2010-11-13", + "sha1": "6511c78611616b08e74f1629e882d868e72f9543", + "md5": "eccb1f228f8247c76f344cfbcb110ade", + "sha256": "12fb56b68fc221bdc9bc5e8f62d5bf522a6dff5f6cb99a3f031a9313d054cf78", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 47.02, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HTTP.java", + "type": "file", + "name": "HTTP.java", + "base_name": "HTTP", + "extension": ".java", + "size": 3631, + "date": "2010-11-13", + "sha1": "ef0615a0ab8fc87942ca79705524791bad5625f5", + "md5": "b0d4367ccdc6645a903aabf643ce3ef3", + "sha256": "fef037ff4122ba1325e14bc383eec00534dfda519a31ca0fb2682b490dbdbc3e", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 32.4, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpContext.java", + "type": "file", + "name": "HttpContext.java", + "base_name": "HttpContext", + "extension": ".java", + "size": 2682, + "date": "2010-11-13", + "sha1": "12b772e88ff602bc87a8f9ed275c1b77858ce1a0", + "md5": "07a189f9c863a985f21c1697a1467ecf", + "sha256": "be9e5480412f49c366161c33d1f48eacaa375f0fea0cc5f33e38f1b96fca689d", + "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" + ], + "percentage_of_license_text": 43.6, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpDateGenerator.java", + "type": "file", + "name": "HttpDateGenerator.java", + "base_name": "HttpDateGenerator", + "extension": ".java", + "size": 2403, + "date": "2010-11-13", + "sha1": "a45cca3585a4fbb49a5857946926e8913a2ac24f", + "md5": "2f2fe54dac19e80d8735cdba103555b7", + "sha256": "be3380be989330c99239978eeed2964773bad231368faa005b6f8c2f77767a49", + "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" + ], + "percentage_of_license_text": 51.55, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpExpectationVerifier.java", + "type": "file", + "name": "HttpExpectationVerifier.java", + "base_name": "HttpExpectationVerifier", + "extension": ".java", + "size": 3263, + "date": "2010-11-13", + "sha1": "6616a01ccdf1b6d3868b086296181ff47416574a", + "md5": "ac0fbb1ba886ab017d9e4d4e4ce55f6e", + "sha256": "7fcb43a27f74d9340f4ed3503cc275ea35a1216ed83cfb8dd76913ea9420ba25", + "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" + ], + "percentage_of_license_text": 36.5, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpProcessor.java", + "type": "file", + "name": "HttpProcessor.java", + "base_name": "HttpProcessor", + "extension": ".java", + "size": 2320, + "date": "2010-11-13", + "sha1": "4170b9a6ca01df2ca720d5d5a7147fd326aaed0c", + "md5": "9a7b708bf3a8cd2c3dfe4dfdc90d74a5", + "sha256": "40f6fda3d3cc5360a392108edf012681b8bc8b9d3728397a1d620deb05ad6424", + "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" + ], + "percentage_of_license_text": 51.19, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpRequestExecutor.java", + "type": "file", + "name": "HttpRequestExecutor.java", + "base_name": "HttpRequestExecutor", + "extension": ".java", + "size": 13334, + "date": "2010-11-13", + "sha1": "0ac2362c432520beabb6a4f0f0adb71eea3efb48", + "md5": "92a7a28f72cf09d1ce00ce84626c5585", + "sha256": "e456d7981602be43c863080f370e60c9389c2a275b1c31b5e5b8ce17cb43e0be", + "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" + ], + "percentage_of_license_text": 11.19, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpRequestHandler.java", + "type": "file", + "name": "HttpRequestHandler.java", + "base_name": "HttpRequestHandler", + "extension": ".java", + "size": 2394, + "date": "2010-11-13", + "sha1": "54402e85c90ae80c183640cdb675f61e2a508d7d", + "md5": "ad81d2b4cfa9b8c8f6912774bd587cae", + "sha256": "7652c1b5205a1e37300a6f22700b4effb5e4da08d2f51d6a91e1a4daa32e507d", + "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" + ], + "percentage_of_license_text": 49.5, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpRequestHandlerRegistry.java", + "type": "file", + "name": "HttpRequestHandlerRegistry.java", + "base_name": "HttpRequestHandlerRegistry", + "extension": ".java", + "size": 3397, + "date": "2010-11-13", + "sha1": "788980988e1cefac802e1fb84b84530e13cb9d32", + "md5": "23c2945f1f7a417e7b4ae498c7b055da", + "sha256": "05d069883fb4ef822bee2e36b8d4f0cc87e482c14b33416d0a8a6d6bd00a56f3", + "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" + ], + "percentage_of_license_text": 40.11, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpRequestHandlerResolver.java", + "type": "file", + "name": "HttpRequestHandlerResolver.java", + "base_name": "HttpRequestHandlerResolver", + "extension": ".java", + "size": 1797, + "date": "2010-11-13", + "sha1": "e7a15d8c899727ffd0b878699000ea70128d4b9c", + "md5": "c710d53e1335490655007b987509c219", + "sha256": "1472b8fd1cbfe20116c9effa195c9e0902173c58582a903611245cf9ec4b8062", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 67.26, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpRequestInterceptorList.java", + "type": "file", + "name": "HttpRequestInterceptorList.java", + "base_name": "HttpRequestInterceptorList", + "extension": ".java", + "size": 3289, + "date": "2010-11-13", + "sha1": "189594259d89575a67db918788e1a76cef75d1a6", + "md5": "6916f484f19f11d644d57ba5b156e629", + "sha256": "783b0ea7a89d2c0a956b871fd6d14d2826c39b7cd61d5f111fd1d5a62362eb7c", + "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" + ], + "percentage_of_license_text": 39.79, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpResponseInterceptorList.java", + "type": "file", + "name": "HttpResponseInterceptorList.java", + "base_name": "HttpResponseInterceptorList", + "extension": ".java", + "size": 3313, + "date": "2010-11-13", + "sha1": "1e90c2b40bcd8adfecf16dd4cc5b67e6c7d7ee66", + "md5": "85866cde67995e5f566d5000ed0c876f", + "sha256": "74a530eb0140c8e4a8a9369b14151819fd5ae8c39ce8d1839251e2c7cfbab89a", + "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" + ], + "percentage_of_license_text": 39.79, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/HttpService.java", + "type": "file", + "name": "HttpService.java", + "base_name": "HttpService", + "extension": ".java", + "size": 15062, + "date": "2010-11-13", + "sha1": "67ede2152d32557bf806a59bdf1386259099e7eb", + "md5": "d03c1371d10e82a702afec5ba70ef33c", + "sha256": "d99cf77c4011fc9c0f35cee1200fc136af07f5dd0ce9903949274eb3724e88df", + "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" + ], + "percentage_of_license_text": 11.01, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ImmutableHttpProcessor.java", + "type": "file", + "name": "ImmutableHttpProcessor.java", + "base_name": "ImmutableHttpProcessor", + "extension": ".java", + "size": 4669, + "date": "2010-11-13", + "sha1": "1a2aa84cd3030c635537cf3d808c22904e5d14e5", + "md5": "76f47a026f439d78ac05056eea598590", + "sha256": "5011ba129908f0d9a1b477fa2fa26f64936a087e03ca27479a4929e4237b7870", + "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" + ], + "percentage_of_license_text": 36.23, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1440, + "date": "2010-11-13", + "sha1": "31dc05a3967b44dac9831ce7005296fc39b4c098", + "md5": "7506482099eaed667079c0019492b015", + "sha256": "88ed7f779110eba2b3a4f5091b786db359c99f65d1b459af423d1d43c3e1b9f9", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 82.87, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestConnControl.java", + "type": "file", + "name": "RequestConnControl.java", + "base_name": "RequestConnControl", + "extension": ".java", + "size": 2423, + "date": "2010-11-13", + "sha1": "9aedfb9e2cc05e9517762a751b10c89b9524b121", + "md5": "36d3a9b23c610f9a11403f8ee7440ef1", + "sha256": "b38094b7131e5ff8c9d83fb020127c2ab70b57c6713c3a8226def641f5b9513d", + "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" + ], + "percentage_of_license_text": 54.35, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestContent.java", + "type": "file", + "name": "RequestContent.java", + "base_name": "RequestContent", + "extension": ".java", + "size": 4098, + "date": "2010-11-13", + "sha1": "a36a8fed96333c8515accb18b903832f57ce788b", + "md5": "2c99d89bd5a262537a2aaa7b15984e52", + "sha256": "3bc87cfed9b90db3fe9419c141f22b8c08f94a5d9f8f2e040bf076ed9f9c2cab", + "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" + ], + "percentage_of_license_text": 35.71, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestDate.java", + "type": "file", + "name": "RequestDate.java", + "base_name": "RequestDate", + "extension": ".java", + "size": 2347, + "date": "2010-11-13", + "sha1": "452da3305c92d468017d0ed99b3c804da6d41b66", + "md5": "b4e11480cf88b8ee4d4118ded08c8199", + "sha256": "9b51021beb68c2b672295f6e6e1f419bf203a5a8ebbc69ba8aa279d91c5bf591", + "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" + ], + "percentage_of_license_text": 57.03, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestExpectContinue.java", + "type": "file", + "name": "RequestExpectContinue.java", + "base_name": "RequestExpectContinue", + "extension": ".java", + "size": 3037, + "date": "2010-11-13", + "sha1": "6fde1da5af235ca29fe54107d5765a6d65450a43", + "md5": "a0e7dfe22376088f5b47e12613a26cd4", + "sha256": "bfeafff347a4dbec03f6b6d239337409f755c1de779eed3c4a395fa169721f9b", + "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" + ], + "percentage_of_license_text": 45.45, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestTargetHost.java", + "type": "file", + "name": "RequestTargetHost.java", + "base_name": "RequestTargetHost", + "extension": ".java", + "size": 3816, + "date": "2010-11-13", + "sha1": "ee23fd878b23fa63ed4a0ec3eddb32cfedba5340", + "md5": "1e97c4ea55997453a1d951e1f4fb489b", + "sha256": "dab26fc11f0d0d3e21de7496a5ab89250afde1bf077aebc92c383e2c5b3dc4c8", + "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" + ], + "percentage_of_license_text": 39.27, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/RequestUserAgent.java", + "type": "file", + "name": "RequestUserAgent.java", + "base_name": "RequestUserAgent", + "extension": ".java", + "size": 2418, + "date": "2010-11-13", + "sha1": "0ba2f64e37fcefbafd4f7a0f531e75e037bf59f4", + "md5": "1c497fb213cc8a4f7be7e2fcf1d41109", + "sha256": "56a3bc2f2fdb2edc5000a75df14304b733df683c320ed82374f01d3d6275a9d0", + "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" + ], + "percentage_of_license_text": 54.95, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ResponseConnControl.java", + "type": "file", + "name": "ResponseConnControl.java", + "base_name": "ResponseConnControl", + "extension": ".java", + "size": 3979, + "date": "2010-11-13", + "sha1": "7c73e05a6a06d46c02cf2dc19aaee81d554c2af2", + "md5": "a2a8023cb1133bf33137f930beb15a76", + "sha256": "f3369ade9292d79108d80423006037d1de553a5d08d2078a064a449f90d8d950", + "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" + ], + "percentage_of_license_text": 34.88, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ResponseContent.java", + "type": "file", + "name": "ResponseContent.java", + "base_name": "ResponseContent", + "extension": ".java", + "size": 4006, + "date": "2010-11-13", + "sha1": "407855877268538c9ef0ba58d2687e6faf069fc7", + "md5": "187c8442012eb7e15a5928e970137dff", + "sha256": "3b09c204fb4feb817bd6357d138dcdfef69d4e0cb23d2b627573f16ff9b55971", + "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" + ], + "percentage_of_license_text": 35.55, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ResponseDate.java", + "type": "file", + "name": "ResponseDate.java", + "base_name": "ResponseDate", + "extension": ".java", + "size": 2380, + "date": "2010-11-13", + "sha1": "eb6e0cb2d8e53fa55e1cc3a4b6b9875fda25ffb7", + "md5": "ba22691876535cbc8d5fad76df72b0ca", + "sha256": "dc29840d9139ad90fe5c7f8409fcc3e40bbff5dfdaa56986e4fe284c8612a07d", + "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" + ], + "percentage_of_license_text": 55.76, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/ResponseServer.java", + "type": "file", + "name": "ResponseServer.java", + "base_name": "ResponseServer", + "extension": ".java", + "size": 2450, + "date": "2010-11-13", + "sha1": "3c1b6ec6a9034204e5d52097aebec14692c69e36", + "md5": "578c5b50a8184fde5f8315d236a38abe", + "sha256": "2c49c45f72d137d7a453a82c58cc209483671b7a8b6095f6b3767cb7c3db4801", + "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" + ], + "percentage_of_license_text": 55.15, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/SyncBasicHttpContext.java", + "type": "file", + "name": "SyncBasicHttpContext.java", + "base_name": "SyncBasicHttpContext", + "extension": ".java", + "size": 1818, + "date": "2010-11-13", + "sha1": "904b96563dd0e8e3de062ee1978b7b72eb9833f6", + "md5": "22161b04b37382d1f6e3fd23dc7dfe2c", + "sha256": "b4fdc2294fc04ddfd95eddf7a02225e8fbd92efa35b0b1a8264052fdd4c102e5", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 70.75, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/protocol/UriPatternMatcher.java", + "type": "file", + "name": "UriPatternMatcher.java", + "base_name": "UriPatternMatcher", + "extension": ".java", + "size": 5355, + "date": "2010-11-13", + "sha1": "a96a7d37174a005f5ff4c61c09cb0e58e505c515", + "md5": "72a23e7f182467ea34dd140f41014fc1", + "sha256": "0551e322a05eae3a5cb45bbf39cd1d60722801e819056ad05adba5656ac01165", + "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" + ], + "percentage_of_license_text": 26.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util", + "type": "directory", + "name": "util", + "base_name": "util", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 8, + "dirs_count": 0, + "size_count": 59712, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/ByteArrayBuffer.java", + "type": "file", + "name": "ByteArrayBuffer.java", + "base_name": "ByteArrayBuffer", + "extension": ".java", + "size": 11784, + "date": "2010-11-13", + "sha1": "1f43327077a86f45f27b9b8f81f534ac2c6247fc", + "md5": "aa3a3f1e828d2a2753df1eafa61cbd42", + "sha256": "6e0128327f1ace03787d8b618456adde82463c8f6810ea5902501736e7f3a2fc", + "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" + ], + "percentage_of_license_text": 10.1, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/CharArrayBuffer.java", + "type": "file", + "name": "CharArrayBuffer.java", + "base_name": "CharArrayBuffer", + "extension": ".java", + "size": 16429, + "date": "2010-11-13", + "sha1": "b8a396d8e1b5eaebdfff7582615d0abc29ad10cc", + "md5": "a62069598c3b4aae737721120dec2994", + "sha256": "9d2dd7cd79b0579faf3bd740b21cb9c868a4fe34695361372b99864b9ea9528a", + "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" + ], + "percentage_of_license_text": 7.51, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/EncodingUtils.java", + "type": "file", + "name": "EncodingUtils.java", + "base_name": "EncodingUtils", + "extension": ".java", + "size": 5872, + "date": "2010-11-13", + "sha1": "ebcb4d1a312503192ed1d40c1750eccf9b0496bc", + "md5": "4eca38f820b4dfbf57e7fa762647048f", + "sha256": "d14ede17be75a7754d4901298d92c809f4a8d591d1232252c5019eb2f72a7335", + "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" + ], + "percentage_of_license_text": 21.93, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/EntityUtils.java", + "type": "file", + "name": "EntityUtils.java", + "base_name": "EntityUtils", + "extension": ".java", + "size": 7969, + "date": "2010-11-13", + "sha1": "5f32e1f2fb8848b00854498e26fa52b83fd03cff", + "md5": "c9ecc24914bcf6d8bce8c4a835bc3923", + "sha256": "9a049e8dba1d2d7ce78274bc6f06002b50e7681f9816c73446a5cbb1e2eef13f", + "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" + ], + "percentage_of_license_text": 17.18, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/ExceptionUtils.java", + "type": "file", + "name": "ExceptionUtils.java", + "base_name": "ExceptionUtils", + "extension": ".java", + "size": 2805, + "date": "2010-11-13", + "sha1": "2c4bc02be0d5e4ef35c6c2e0e06fa57f5f195113", + "md5": "f73305960f5fb82bef9b5e366c166db4", + "sha256": "dc63d8ec55ac4a2fc9f1ee6123a38992ce64f7d031eb23e052bdfff25d28957a", + "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" + ], + "percentage_of_license_text": 46.15, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/LangUtils.java", + "type": "file", + "name": "LangUtils.java", + "base_name": "LangUtils", + "extension": ".java", + "size": 2684, + "date": "2010-11-13", + "sha1": "ecfd92682e5e564c2193cb1fbf460f101716714e", + "md5": "38386ac7520ad8af989f0b6565f64654", + "sha256": "022b32fb3b265d15b8d5fe9cbf6c3f0dcf7faf66fbe0b2030de5bac260a9fd42", + "mime_type": "text/plain", + "file_type": "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" + ], + "percentage_of_license_text": 47.62, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/package.html", + "type": "file", + "name": "package.html", + "base_name": "package", + "extension": ".html", + "size": 1415, + "date": "2010-11-13", + "sha1": "6e7e6142aa8c0380a56c3b1d3298b7de49c2d3e4", + "md5": "529503c9893d7342db403ffeee349d00", + "sha256": "146eb50b3c8c9ddad34517f56ef96d08d3873d02c06569ba051d16c690172479", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text", + "programming_language": "HTML", + "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": 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": 83.8, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 14, + "end_line": 14 + }, + { + "url": "http://www.apache.org/", + "start_line": 27, + "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, + "scan_errors": [] + }, + { + "path": "org/apache/http/util/VersionInfo.java", + "type": "file", + "name": "VersionInfo.java", + "base_name": "VersionInfo", + "extension": ".java", + "size": 10754, + "date": "2010-11-13", + "sha1": "d9f180dd61eabf70a1b9cfed4fa74d6312ad16d0", + "md5": "5d3313860a0cfb620f697c4ba4054744", + "sha256": "29c288cbb90783359e367ab681d40b685f31189d11e3bf06dbe4179323cd94fc", + "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" + ], + "percentage_of_license_text": 13.56, + "copyrights": [], + "holders": [], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 11, + "end_line": 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, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] + } + } + } +} \ No newline at end of file diff --git a/test/business/summarizerTest.js b/test/business/summarizerTest.js new file mode 100644 index 000000000..da4f67abe --- /dev/null +++ b/test/business/summarizerTest.js @@ -0,0 +1,21 @@ +// (c) Copyright 2023, SAP SE and ClearlyDefined contributors. Licensed under the MIT license. +// SPDX-License-Identifier: MIT + +const { expect } = require('chai') +const SummaryService = require('../../business/summarizer') +const EntityCoordinates = require('../../lib/entityCoordinates') + +describe('Summary Service', () => { + it('should handle sourcearchive components', () => { + const coordSpec = 'sourcearchive/mavencentral/org.apache.httpcomponents/httpcore/4.1' + const coords = EntityCoordinates.fromString(coordSpec) + const raw = require(`./evidence/${coordSpec.replace(/\//g, '-')}.json`) + + const summaryService = SummaryService({}) + const summaries = summaryService.summarizeAll(coords, raw) + const scancodeSummary = summaries['scancode']['30.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/maven-flywaydb-file-license.json b/test/fixtures/scancode/30.1.0/maven-flywaydb-file-license.json new file mode 100644 index 000000000..dde707b5e --- /dev/null +++ b/test/fixtures/scancode/30.1.0/maven-flywaydb-file-license.json @@ -0,0 +1,1531 @@ +{ + "_metadata": { + "type": "scancode", + "url": "cd:/maven/mavencentral/org.flywaydb/flyway-maven-plugin/5.0.6", + "fetchedAt": "2023-07-04T22:13:03.522Z", + "links": { + "self": { + "href": "urn:maven:mavencentral:org.flywaydb:flyway-maven-plugin:revision:5.0.6:tool:scancode:30.3.0", + "type": "resource" + }, + "siblings": { + "href": "urn:maven:mavencentral:org.flywaydb:flyway-maven-plugin:revision:5.0.6:tool:scancode", + "type": "collection" + } + }, + "schemaVersion": "30.3.0", + "toolVersion": "30.1.0", + "contentType": "application/json", + "releaseDate": "2018-01-16T13:54:17.000Z", + "processedAt": "2023-07-04T22:13:13.842Z" + }, + "content": { + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "30.1.0", + "options": { + "input": [ + "/tempdir/cd-Tq1gTt" + ], + "--classify": true, + "--copyright": true, + "--email": true, + "--generated": true, + "--info": true, + "--is-license-text": true, + "--json-pp": "/tempdir/cd-LxElVP", + "--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": "2023-07-04T221304.102545", + "end_timestamp": "2023-07-04T221313.153887", + "output_format_version": "1.0.0", + "duration": 9.051357507705688, + "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": 17 + } + } + ], + "summary": { + "license_expressions": [ + { + "value": "apache-2.0", + "count": 3 + } + ], + "copyrights": [ + { + "value": null, + "count": 14 + }, + { + "value": "Copyright Boxfuse GmbH", + "count": 2 + }, + { + "value": "Copyright (c) Axel Fontaine", + "count": 1 + } + ], + "holders": [ + { + "value": null, + "count": 14 + }, + { + "value": "Boxfuse GmbH", + "count": 2 + }, + { + "value": "Axel Fontaine", + "count": 1 + } + ], + "authors": [ + { + "value": null, + "count": 17 + } + ], + "programming_language": [], + "packages": [ + { + "type": "maven", + "namespace": "org.flywaydb", + "name": "flyway-maven-plugin", + "version": "5.0.6", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "flyway-maven-plugin", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/org.apache.maven/maven-plugin-api", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-artifact", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-model", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-core", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@1.5.15", + "requirement": "1.5.15", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.flywaydb/flyway-core@5.0.6", + "requirement": "5.0.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.5", + "requirement": "3.5", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.flywaydb/flyway-maven-plugin@5.0.6?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.flywaydb/flyway-maven-plugin@5.0.6", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/", + "repository_download_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/flyway-maven-plugin-5.0.6.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/flyway-maven-plugin-5.0.6.pom", + "files": [ + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin/pom.xml", + "type": "file" + } + ] + } + ] + }, + "license_clarity_score": { + "score": 4, + "declared": false, + "discovered": 0.18, + "consistency": false, + "spdx": false, + "license_texts": false + }, + "summary_of_key_files": { + "license_expressions": [], + "copyrights": [], + "holders": [], + "authors": [], + "programming_language": [] + }, + "files": [ + { + "path": "META-INF", + "type": "directory", + "name": "META-INF", + "base_name": "META-INF", + "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": 7, + "dirs_count": 3, + "size_count": 409851, + "scan_errors": [] + }, + { + "path": "META-INF/LICENSE.txt", + "type": "file", + "name": "LICENSE.txt", + "base_name": "LICENSE", + "extension": ".txt", + "size": 561, + "date": "2018-01-16", + "sha1": "956959d6b1a80c27d1d697e0a1e79623417715f8", + "md5": "c93c35e4edef93889ed8421f50be4772", + "sha256": "58c006eea3e0086865cecfdda4747cbbe77f624400ac7422e8b31338a4357aee", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "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": 3, + "end_line": 13, + "matched_rule": { + "identifier": "apache-2.0_7.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": 85, + "matched_length": 85, + "match_coverage": 100, + "rule_relevance": 100 + }, + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou 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\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License." + } + ], + "license_expressions": [ + "apache-2.0" + ], + "percentage_of_license_text": 94.44, + "copyrights": [ + { + "value": "Copyright 2010-2018 Boxfuse GmbH", + "start_line": 1, + "end_line": 1 + } + ], + "holders": [ + { + "value": "Boxfuse GmbH", + "start_line": 1, + "end_line": 1 + } + ], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 7, + "end_line": 7 + } + ], + "is_legal": true, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": true, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "META-INF/MANIFEST.MF", + "type": "file", + "name": "MANIFEST.MF", + "base_name": "MANIFEST", + "extension": ".MF", + "size": 130, + "date": "2018-01-16", + "sha1": "014a1b38bac03c69d00ba12d14fecdc62d04eb33", + "md5": "ce66702162ad3f3e2f842c74133f4b11", + "sha256": "05e10ea0400e4e77f9f4de009a0b4db1fc53809d38d0bba3a51b50b4d1f12f98", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [], + "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, + "scan_errors": [] + }, + { + "path": "META-INF/README.txt", + "type": "file", + "name": "README.txt", + "base_name": "README", + "extension": ".txt", + "size": 966, + "date": "2018-01-16", + "sha1": "4034f0e2154272a7bcfcd31d4dae54ef220b2700", + "md5": "ab11671f03862534cb69b10a24e0a200", + "sha256": "69ba88f3d1d4f2cf8dbc0f6d07f5035359633905e39c03fb08df9be6f7a640c8", + "mime_type": "text/plain", + "file_type": "ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "licenses": [ + { + "key": "apache-2.0", + "score": 90.53, + "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": 16, + "end_line": 30, + "matched_rule": { + "identifier": "apache-2.0_943.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": "3-seq", + "rule_length": 95, + "matched_length": 86, + "match_coverage": 90.53, + "rule_relevance": 100 + }, + "matched_text": "License\n-------\n[Copyright] ([C]) [2010]-[2015] [Axel] [Fontaine]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License." + } + ], + "license_expressions": [ + "apache-2.0" + ], + "percentage_of_license_text": 60.99, + "copyrights": [ + { + "value": "Copyright (c) 2010-2015 Axel Fontaine", + "start_line": 18, + "end_line": 18 + } + ], + "holders": [ + { + "value": "Axel Fontaine", + "start_line": 18, + "end_line": 18 + } + ], + "authors": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "https://flywaydb.org/", + "start_line": 8, + "end_line": 8 + }, + { + "url": "https://flywaydb.org/documentation/contribute/", + "start_line": 13, + "end_line": 13 + }, + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 24, + "end_line": 24 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": true, + "is_top_level": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "META-INF/maven", + "type": "directory", + "name": "maven", + "base_name": "maven", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 4, + "dirs_count": 2, + "size_count": 408194, + "scan_errors": [] + }, + { + "path": "META-INF/maven/plugin.xml", + "type": "file", + "name": "plugin.xml", + "base_name": "plugin", + "extension": ".xml", + "size": 214274, + "date": "2018-01-16", + "sha1": "0afea464bbac5394d2c60918b97669d2551af565", + "md5": "3f62393cd5ebbd9c3d98e3d76c1a4f2d", + "sha256": "d157b16f3c7103ff149051c868276741edda7246a4508c10873adb928c5575b4", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, ASCII text, with CRLF line terminators", + "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": [], + "packages": [], + "emails": [], + "urls": [ + { + "url": "https://flywaydb.org/assets/balsamiq/command-validate.png"", + "start_line": 3020, + "end_line": 3020 + } + ], + "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, + "scan_errors": [] + }, + { + "path": "META-INF/maven/org.flywaydb", + "type": "directory", + "name": "org.flywaydb", + "base_name": "org.flywaydb", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 3, + "dirs_count": 1, + "size_count": 193920, + "scan_errors": [] + }, + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin", + "type": "directory", + "name": "flyway-maven-plugin", + "base_name": "flyway-maven-plugin", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 3, + "dirs_count": 0, + "size_count": 193920, + "scan_errors": [] + }, + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin/plugin-help.xml", + "type": "file", + "name": "plugin-help.xml", + "base_name": "plugin-help", + "extension": ".xml", + "size": 189337, + "date": "2018-01-16", + "sha1": "cec2e4a47287ed732ca4d5e45bb09f2ac8498fd4", + "md5": "53a8c99944651d4b4ceb9b30edd3628a", + "sha256": "e877805314232ae2248feb9a055c1933362ceb3ff6cf3c0178865e3fa97c54c2", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, ASCII text, with very long lines, with CRLF line terminators", + "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": [], + "packages": [], + "emails": [], + "urls": [], + "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, + "scan_errors": [] + }, + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin/pom.properties", + "type": "file", + "name": "pom.properties", + "base_name": "pom", + "extension": ".properties", + "size": 121, + "date": "2018-01-16", + "sha1": "4a1543c702fec3326ab57e5f977f3879fc465b88", + "md5": "3a88c83d1467da863f050c02328058c2", + "sha256": "58b5ad3c4f05242add1cffef5599f8822c5bd7a5fc6b4832c458157c6e9810cf", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [], + "packages": [], + "emails": [], + "urls": [], + "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, + "scan_errors": [] + }, + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin/pom.xml", + "type": "file", + "name": "pom.xml", + "base_name": "pom", + "extension": ".xml", + "size": 4462, + "date": "2018-01-16", + "sha1": "1517b47c76963ce133d9eff50f992da3b182c3ec", + "md5": "9f941445bc7e47c02b5482f51f4d68a9", + "sha256": "94873b1e54a6d6c4a671133397ac5e13745c20f2760619159785d36346f158b2", + "mime_type": "text/plain", + "file_type": "exported SGML document, ASCII text", + "programming_language": null, + "is_binary": false, + "is_text": true, + "is_archive": false, + "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": 5, + "end_line": 15, + "matched_rule": { + "identifier": "apache-2.0_7.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": 85, + "matched_length": 85, + "match_coverage": 100, + "rule_relevance": 100 + }, + "matched_text": "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." + } + ], + "license_expressions": [ + "apache-2.0" + ], + "percentage_of_license_text": 22.91, + "copyrights": [ + { + "value": "Copyright 2010-2018 Boxfuse GmbH", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "value": "Boxfuse GmbH", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "packages": [ + { + "type": "maven", + "namespace": "org.flywaydb", + "name": "flyway-maven-plugin", + "version": "5.0.6", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "flyway-maven-plugin", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/org.apache.maven/maven-plugin-api", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-artifact", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-model", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-core", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@1.5.15", + "requirement": "1.5.15", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.flywaydb/flyway-core@5.0.6", + "requirement": "5.0.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.5", + "requirement": "3.5", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.flywaydb/flyway-maven-plugin@5.0.6?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.flywaydb/flyway-maven-plugin@5.0.6", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/", + "repository_download_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/flyway-maven-plugin-5.0.6.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/flywaydb/flyway-maven-plugin/5.0.6/flyway-maven-plugin-5.0.6.pom", + "files": [ + { + "path": "META-INF/maven/org.flywaydb/flyway-maven-plugin/pom.xml", + "type": "file" + } + ] + } + ], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://maven.apache.org/xsd/maven-4.0.0.xsd", + "start_line": 18, + "end_line": 18 + } + ], + "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, + "scan_errors": [] + }, + { + "path": "org", + "type": "directory", + "name": "org", + "base_name": "org", + "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": 10, + "dirs_count": 2, + "size_count": 26084, + "scan_errors": [] + }, + { + "path": "org/flywaydb", + "type": "directory", + "name": "flywaydb", + "base_name": "flywaydb", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 10, + "dirs_count": 1, + "size_count": 26084, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven", + "type": "directory", + "name": "maven", + "base_name": "maven", + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 10, + "dirs_count": 0, + "size_count": 26084, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/AbstractFlywayMojo.class", + "type": "file", + "name": "AbstractFlywayMojo.class", + "base_name": "AbstractFlywayMojo", + "extension": ".class", + "size": 14975, + "date": "2018-01-16", + "sha1": "432fa9a32599feb1bbd79d4e13a04288b5636ab9", + "md5": "ad3b70b1b1ff24368f6a99d6f961b7db", + "sha256": "bee3b48287e02bd9e5c084e1e99ed6bbcc917a3107cbd67f8ef537237c10e41f", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/BaselineMojo.class", + "type": "file", + "name": "BaselineMojo.class", + "base_name": "BaselineMojo", + "extension": ".class", + "size": 902, + "date": "2018-01-16", + "sha1": "70a37ad1d12a1e32f37cd2f92f553e7cfe64c0ef", + "md5": "99beb61057f431dda74998243a1793b1", + "sha256": "3e35e8b2f74aa8d747a7a3d1d00f7989cacbb41e1492f7192359feafaf2d55f8", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/CleanMojo.class", + "type": "file", + "name": "CleanMojo.class", + "base_name": "CleanMojo", + "extension": ".class", + "size": 875, + "date": "2018-01-16", + "sha1": "c8a9c63a2cea1218b2f42e5bcab2e15bd427cf90", + "md5": "ecb2b2a8dc9a0c3017ceaec075775ca6", + "sha256": "2590c35bd89f9c8507d354708c81f883857e6ac50279818767c58c2da6225518", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/InfoMojo.class", + "type": "file", + "name": "InfoMojo.class", + "base_name": "InfoMojo", + "extension": ".class", + "size": 2065, + "date": "2018-01-16", + "sha1": "413ec5c8c4ad0b6c21fda34209b87c1cb270e6f5", + "md5": "738708f965414773749591182043cb84", + "sha256": "eaba7c97c45e4d63e294aa93af73319674ca50c4413fd7bbc2144ad0dd411f48", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/MavenLog.class", + "type": "file", + "name": "MavenLog.class", + "base_name": "MavenLog", + "extension": ".class", + "size": 1207, + "date": "2018-01-16", + "sha1": "2f26fd94295eec04bb07d6c0c8c9b402b10f987b", + "md5": "50d690921ffb946bac57b34236b37bc7", + "sha256": "bd5cb7a9f1acde6350c87553bc6a57dd7fb1b51041510cdc36fce91b07d06c8b", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/MavenLogCreator.class", + "type": "file", + "name": "MavenLogCreator.class", + "base_name": "MavenLogCreator", + "extension": ".class", + "size": 1005, + "date": "2018-01-16", + "sha1": "43693f60bf91624917472e9a9e566a897c5e607f", + "md5": "ef3f793e9227dffe03228a806a45eac8", + "sha256": "3be612a6d68be345306dd52ee0276cdf897007725292a5e23e794b54accef6f8", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/MigrateMojo.class", + "type": "file", + "name": "MigrateMojo.class", + "base_name": "MigrateMojo", + "extension": ".class", + "size": 1710, + "date": "2018-01-16", + "sha1": "d0887c74f9179f153c8128e554847aab61d3d2ad", + "md5": "0f03fbd2a956bd554757bca88120d2c0", + "sha256": "bc7ed4fa4b11b0d05fc3eca60091ba699145f0dd8c48db28ed34cf6a399e009e", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/RepairMojo.class", + "type": "file", + "name": "RepairMojo.class", + "base_name": "RepairMojo", + "extension": ".class", + "size": 894, + "date": "2018-01-16", + "sha1": "fe2ae1973625208bd45a09de94e20061924fd947", + "md5": "169de6972eb3c94468dabeb5f37cf582", + "sha256": "9bc5126c9385481f1aebecee8b22396b5bc75de7b9a6a9a65b96733e4d9e6258", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/UndoMojo.class", + "type": "file", + "name": "UndoMojo.class", + "base_name": "UndoMojo", + "extension": ".class", + "size": 1549, + "date": "2018-01-16", + "sha1": "3ad1dc637e89a9cc3f916cb3b4f547ab51046740", + "md5": "919ab55b96176980a9d8e3fa0c5f8c18", + "sha256": "dd1b195f3792ce5c86c603e316b0a97ae69148f11c44a7129779a199d90e5996", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "org/flywaydb/maven/ValidateMojo.class", + "type": "file", + "name": "ValidateMojo.class", + "base_name": "ValidateMojo", + "extension": ".class", + "size": 902, + "date": "2018-01-16", + "sha1": "57e56a93b57ec5e07ba05b041b763aa03428e4ca", + "md5": "67b61ad8d3bbdceb75d7b65ec9e3c1b0", + "sha256": "c611cc9d38af2c198fe7e7689f63448efa616a66c601fb4e7c2a958a33091f14", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 52.0 (Java 1.8)", + "programming_language": null, + "is_binary": true, + "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": false, + "is_key_file": false, + "is_generated": false, + "is_license_text": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] + } +} \ No newline at end of file diff --git a/test/lib/util.js b/test/lib/util.js index 81df7b63e..011b4c598 100644 --- a/test/lib/util.js +++ b/test/lib/util.js @@ -5,6 +5,7 @@ const expect = chai.expect const sinon = require('sinon') const utils = require('../../lib/utils') const { DateTime } = require('luxon') +const EntityCoordinates = require('../../lib/entityCoordinates') describe('Utils latest version', () => { it('should get the latest version', () => { @@ -301,8 +302,9 @@ describe('Utils isLicenseFile', () => { 'package/COPYING.md', 'package/COPYING.HTML' ] + const coordinate = EntityCoordinates.fromString('npm/npm/-/name/version') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'npm' }), `input: ${input}`).to.be.true + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.true } }) @@ -319,8 +321,28 @@ describe('Utils isLicenseFile', () => { 'meta-inf/COPYING.md', 'meta-inf/COPYING.HTML' ] + const coordinate = EntityCoordinates.fromString('maven/mavencentral/group/artifact/version') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'maven' }), `input: ${input}`).to.be.true + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.true + } + }) + + it('should detect package level license files for sourcearchive', () => { + const inputs = [ + 'meta-inf/LICENSE', + 'meta-inf/license', + 'meta-inf/License.txt', + 'meta-inf/LICENSE.md', + 'meta-inf/LICENSE.HTML', + 'meta-inf/COPYING', + 'meta-inf/copying', + 'meta-inf/Copying.txt', + 'meta-inf/COPYING.md', + 'meta-inf/COPYING.HTML' + ] + const coordinate = EntityCoordinates.fromString('sourcearchive/mavencentral/group/artifact/version') + for (const input of inputs) { + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.true } }) @@ -337,8 +359,9 @@ describe('Utils isLicenseFile', () => { 'redis-3.1/COPYING.md', 'redis-3.1/COPYING.HTML' ] + const coordinate = EntityCoordinates.fromString('pypi/pypi/-/redis/3.1') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'pypi', name: 'redis', revision: '3.1' }), `input: ${input}`).to.be.true + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.true } }) @@ -355,8 +378,9 @@ describe('Utils isLicenseFile', () => { 'package/COPYING.md', 'package/COPYING.HTML', ] + const coordinate = EntityCoordinates.fromString('nuget/nuget/-/redis/3.1') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'nuget' }), `input: ${input}`).to.be.false + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.false } }) @@ -373,8 +397,9 @@ describe('Utils isLicenseFile', () => { '.package/COPYING.md', 'package2/COPYING.HTML' ] + const coordinate = EntityCoordinates.fromString('npm/npm/-/name/version') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'npm' }), `input: ${input}`).to.be.false + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.false } }) @@ -391,8 +416,9 @@ describe('Utils isLicenseFile', () => { '.package/COPYING.md', 'package2/COPYING.HTML' ] + const coordinate = EntityCoordinates.fromString('maven/mavencentral/group/artifact/version') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'maven' }), `input: ${input}`).to.be.false + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.false } }) @@ -409,9 +435,9 @@ describe('Utils isLicenseFile', () => { 'other-3.1/COPYING', 'package/COPYING' ] + const coordinate = EntityCoordinates.fromString('pypi/pypi/-/redis/3.1') for (const input of inputs) { - expect(utils.isLicenseFile(input, { type: 'pypi', name: 'redis', revision: '3.1' }), `input: ${input}`).to.be - .false + expect(utils.isLicenseFile(input, coordinate), `input: ${input}`).to.be.false } }) diff --git a/test/providers/summary/scancode.js b/test/providers/summary/scancode.js index 359d2b0e3..74f2b4af2 100644 --- a/test/providers/summary/scancode.js +++ b/test/providers/summary/scancode.js @@ -74,6 +74,13 @@ describe('ScancodeSummarizer basic compatability', () => { ) }) + it('should detect license from maven license file in version 30.1.0 of ScanCode', () => { + const coordinates = { type: 'maven', provider: 'mavencentral' } + const harvestData = getHarvestData('30.1.0', 'maven-flywaydb-file-license') + const result = summarizer.summarize(coordinates, harvestData) + assert.equal(result.licensed.declared, 'Apache-2.0') + }) + it('throws an error on an invalid scancode version', () => { const version = '0.0.0' const coordinates = { type: 'npm', provider: 'npmjs' } diff --git a/test/summary/clearlydefinedTests.js b/test/summary/clearlydefinedTests.js index 1bf1a50fb..31c99f81e 100644 --- a/test/summary/clearlydefinedTests.js +++ b/test/summary/clearlydefinedTests.js @@ -87,6 +87,49 @@ describe('ClearlyDescribedSummarizer add files', () => { }) }) +describe('ClearlyDescribedSummarizer addCondaData', () => { + const condaTestCoordinates = EntityCoordinates.fromString('conda/conda-forge/-/test/1.0') + it('declares license from registryData', () => { + let result = {} + summarizer.addCondaData(result, { declaredLicenses: 'MIT' }, condaTestCoordinates) + assert.strictEqual(get(result, 'licensed.declared'), 'MIT') + }) + + it('declares dual license from registryData with SPDX expression', () => { + let result = {} + let data = setup([{ path: 'LICENSE-MIT', license: 'MIT' }, { path: 'LICENSE-APACHE', license: 'Apache-2.0' }]) + data.declaredLicenses = 'MIT OR Apache-2.0' + summarizer.addCondaData(result, data, condaTestCoordinates) + assert.strictEqual(get(result, 'licensed.declared'), 'MIT OR Apache-2.0') + }) + + it('normalizes to spdx only', () => { + let result = {} + summarizer.addCondaData(result, { declaredLicenses: 'Garbage' }, condaTestCoordinates) + assert.strictEqual(get(result, 'licensed.declared'), 'NOASSERTION') + }) + + it('describes projectWebsite from registryData', () => { + let result = {} + summarizer.addCondaData(result, { + registryData: { + channelData: { home: 'https://github.com/owner/repo' } + } + }, condaTestCoordinates) + assert.strictEqual(result.described.projectWebsite, 'https://github.com/owner/repo') + }) + + it('describes releaseDate from registryData', () => { + let result = {} + summarizer.addCondaData( + result, + { releaseDate: 'Wed, 14 Jun 2017 07:00:00 GMT' }, + condaTestCoordinates + ) + assert.strictEqual(result.described.releaseDate, '2017-06-14') + }) +}) + describe('ClearlyDescribedSummarizer addCrateData', () => { const crateTestCoordinates = EntityCoordinates.fromString('crate/cratesio/-/test/1.0') it('declares license from registryData', () => { From 15214613046df38e18465ff6c284f64f0b04a8ae Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Mon, 8 Jan 2024 14:09:23 +0000 Subject: [PATCH 02/13] updated to new conda coordinates --- routes/originConda.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/originConda.js b/routes/originConda.js index dfa0e7c90..c05517b5e 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -29,7 +29,7 @@ router.get( Object.entries(repoData['packages']) .forEach(([, packageData]) => { if (packageData.name == name) { - revisions.push(`${packageData.version}_${subdir}`) + revisions.push(`${subdir}--${packageData.version}-${packageData.build}`) } }) } @@ -37,7 +37,7 @@ router.get( Object.entries(repoData['packages.conda']) .forEach(([, packageData]) => { if (packageData.name == name) { - revisions.push(`${packageData.version}_${subdir}`) + revisions.push(`${subdir}--${packageData.version}-${packageData.build}`) } }) } From c497617515c621347852d186bdfb88a843557b97 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Fri, 12 Jan 2024 15:40:52 +0000 Subject: [PATCH 03/13] integrate changes from crawler --- business/statsService.js | 2 +- lib/licenseMatcher.js | 6 +++--- providers/summary/clearlydefined.js | 2 +- routes/originConda.js | 8 ++++---- schemas/curation-1.0.json | 2 +- schemas/curations-1.0.json | 2 +- schemas/definition-1.0.json | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/business/statsService.js b/business/statsService.js index 507fc16c9..0276d1dc8 100644 --- a/business/statsService.js +++ b/business/statsService.js @@ -36,7 +36,7 @@ class StatsService { return { total: () => this._getType('total'), conda: () => this._getType('conda'), - condasource: () => this._getType('condasource'), + condasrc: () => this._getType('condasrc'), crate: () => this._getType('crate'), gem: () => this._getType('gem'), git: () => this._getType('git'), diff --git a/lib/licenseMatcher.js b/lib/licenseMatcher.js index e43f542d3..582576852 100644 --- a/lib/licenseMatcher.js +++ b/lib/licenseMatcher.js @@ -112,9 +112,9 @@ class HarvestLicenseMatchPolicy { case 'maven': return new BaseHarvestLicenseMatchStrategy('maven', ['manifest.summary.licenses']) case 'conda': - return new BaseHarvestLicenseMatchStrategy('conda', ['registryData.license']) - case 'condasource': - return new BaseHarvestLicenseMatchStrategy('condasource', ['registryData.license']) + return new BaseHarvestLicenseMatchStrategy('conda', ['declaredLicenses']) + case 'condasrc': + return new BaseHarvestLicenseMatchStrategy('condasrc', ['declaredLicenses']) case 'crate': return new BaseHarvestLicenseMatchStrategy('crate', ['registryData.license']) case 'pod': diff --git a/providers/summary/clearlydefined.js b/providers/summary/clearlydefined.js index cafcb01ea..f42acaa6f 100644 --- a/providers/summary/clearlydefined.js +++ b/providers/summary/clearlydefined.js @@ -53,7 +53,7 @@ class ClearlyDescribedSummarizer { case 'conda': this.addCondaData(result, data, coordinates) break - case 'condasource': + case 'condasrc': this.addCondaSrcData(result, data, coordinates) break case 'crate': diff --git a/routes/originConda.js b/routes/originConda.js index c05517b5e..51a4bdd0d 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -12,9 +12,9 @@ const condaChannels = { } router.get( - '/:name/:channel/revisions', + '/:channel/:name/revisions', asyncMiddleware(async (request, response) => { - const { name, channel } = request.params + const { channel, name } = request.params if (!condaChannels[channel]) { return response.status(404).send([]) } @@ -29,7 +29,7 @@ router.get( Object.entries(repoData['packages']) .forEach(([, packageData]) => { if (packageData.name == name) { - revisions.push(`${subdir}--${packageData.version}-${packageData.build}`) + revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) } }) } @@ -37,7 +37,7 @@ router.get( Object.entries(repoData['packages.conda']) .forEach(([, packageData]) => { if (packageData.name == name) { - revisions.push(`${subdir}--${packageData.version}-${packageData.build}`) + revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) } }) } diff --git a/schemas/curation-1.0.json b/schemas/curation-1.0.json index 4de658485..eeda81552 100644 --- a/schemas/curation-1.0.json +++ b/schemas/curation-1.0.json @@ -25,7 +25,7 @@ "enum": [ "npm", "conda", - "condasource", + "condasrc", "crate", "git", "maven", diff --git a/schemas/curations-1.0.json b/schemas/curations-1.0.json index df0788cd3..fec1f048c 100644 --- a/schemas/curations-1.0.json +++ b/schemas/curations-1.0.json @@ -27,7 +27,7 @@ "enum": [ "npm", "conda", - "condasource", + "condasrc", "crate", "git", "go", diff --git a/schemas/definition-1.0.json b/schemas/definition-1.0.json index e6b7b0814..45e8258d7 100644 --- a/schemas/definition-1.0.json +++ b/schemas/definition-1.0.json @@ -33,7 +33,7 @@ "enum": [ "npm", "conda", - "condasource", + "condasrc", "crate", "git", "maven", From dd87cfd15ec208550f18347f6426e3648ba8222e Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Wed, 31 Jan 2024 11:27:09 +0000 Subject: [PATCH 04/13] updated service --- providers/summary/clearlydefined.js | 2 +- routes/originConda.js | 27 +++++++++++++++++++-------- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/providers/summary/clearlydefined.js b/providers/summary/clearlydefined.js index f42acaa6f..7f2f47606 100644 --- a/providers/summary/clearlydefined.js +++ b/providers/summary/clearlydefined.js @@ -205,7 +205,7 @@ class ClearlyDescribedSummarizer { addCondaData(result, data, coordinates) { setIfValue(result, 'described.releaseDate', extractDate(get(data, 'releaseDate'))) - setIfValue(result, 'described.urls.download', get(data, 'downloadUrl')) + setIfValue(result, 'described.urls.download', get(data, 'registryData.downloadUrl')) setIfValue(result, 'described.urls.registry', new URL(`${condaChannels[coordinates.provider]}`).href) setIfValue(result, 'described.projectWebsite', get(data, 'registryData.channelData.home')) setIfValue(result, 'licensed.declared', SPDX.normalize(data.declaredLicenses)) diff --git a/routes/originConda.js b/routes/originConda.js index 51a4bdd0d..19dd68c51 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -5,11 +5,24 @@ const asyncMiddleware = require('../middleware/asyncMiddleware') const router = require('express').Router() const requestPromise = require('request-promise-native') const { uniq } = require('lodash') +const { Cache } = require('memory-cache') const condaChannels = { 'anaconda-main': 'https://repo.anaconda.com/pkgs/main', 'anaconda-r': 'https://repo.anaconda.com/pkgs/r', 'conda-forge': 'https://conda.anaconda.org/conda-forge' } +const condaCache = new Cache(); + +async function fetchCondaChannelData(channel) { + const key = `${channel}-channelData` + let channelData = condaCache.get(key) + if (!channelData) { + const url = `${condaChannels[channel]}/channeldata.json` + channelData = await requestPromise({ url, method: 'GET', json: true }) + condaCache.put(key, channelData, 8 * 60 * 60 * 1000) // 8 hours + } + return channelData +} router.get( '/:channel/:name/revisions', @@ -18,8 +31,7 @@ router.get( if (!condaChannels[channel]) { return response.status(404).send([]) } - const url = `${condaChannels[channel]}/channeldata.json` - const channelData = await requestPromise({ url, method: 'GET', json: true }) + let channelData = await fetchCondaChannelData(channel) if (channelData.packages[name]) { let revisions = [] for (let subdir of channelData.packages[name].subdirs) { @@ -28,7 +40,7 @@ router.get( if (repoData['packages']) { Object.entries(repoData['packages']) .forEach(([, packageData]) => { - if (packageData.name == name) { + if (packageData.name === name) { revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) } }) @@ -36,7 +48,7 @@ router.get( if (repoData['packages.conda']) { Object.entries(repoData['packages.conda']) .forEach(([, packageData]) => { - if (packageData.name == name) { + if (packageData.name === name) { revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) } }) @@ -50,14 +62,13 @@ router.get( ) router.get( - '/:name/:channel', + '/:channel/:name', asyncMiddleware(async (request, response) => { - const { name, channel } = request.params + const { channel, name } = request.params if (!condaChannels[channel]) { return response.status(404).send([]) } - const url = `${condaChannels[channel]}/channeldata.json` - const channelData = await requestPromise({ url, method: 'GET', json: true }) + let channelData = await fetchCondaChannelData(channel) let matches = Object.entries(channelData.packages).filter(([packageName,]) => packageName.includes(name)).map( ([packageName,]) => { return { id: packageName } } ) From b1a85e8d73fe5afd5eaa2e813503b17dd58542d5 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Thu, 1 Feb 2024 10:44:14 +0000 Subject: [PATCH 05/13] added conda repodata caching --- routes/originConda.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/routes/originConda.js b/routes/originConda.js index 19dd68c51..4d6fdf140 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -24,6 +24,17 @@ async function fetchCondaChannelData(channel) { return channelData } +async function fetchCondaRepoData(channel, subdir) { + const key = `${channel}-${subdir}-repoData` + let channelData = condaCache.get(key) + if (!channelData) { + const url = `${condaChannels[channel]}/${subdir}/repodata.json` + channelData = await requestPromise({ url, method: 'GET', json: true }) + condaCache.put(key, channelData, 8 * 60 * 60 * 1000) // 8 hours + } + return channelData +} + router.get( '/:channel/:name/revisions', asyncMiddleware(async (request, response) => { @@ -35,8 +46,7 @@ router.get( if (channelData.packages[name]) { let revisions = [] for (let subdir of channelData.packages[name].subdirs) { - const repoUrl = `${condaChannels[channel]}/${subdir}/repodata.json` - const repoData = await requestPromise({ url: repoUrl, method: 'GET', json: true }) + const repoData = await fetchCondaRepoData(channel, subdir) if (repoData['packages']) { Object.entries(repoData['packages']) .forEach(([, packageData]) => { From ddb8a760acec178ae151a176b4eb71a217b5eaa7 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Thu, 8 Feb 2024 15:18:57 +0000 Subject: [PATCH 06/13] update --- routes/originConda.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/originConda.js b/routes/originConda.js index 4d6fdf140..05664bc82 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -11,7 +11,7 @@ const condaChannels = { 'anaconda-r': 'https://repo.anaconda.com/pkgs/r', 'conda-forge': 'https://conda.anaconda.org/conda-forge' } -const condaCache = new Cache(); +const condaCache = new Cache() async function fetchCondaChannelData(channel) { const key = `${channel}-channelData` From f47143de6a6f7c9136fe3ff91b2e2dd12dee4a5e Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Fri, 9 Feb 2024 13:56:38 +0000 Subject: [PATCH 07/13] [conda] refactoring and added info to schema and docs --- docs/determining-declared-license.md | 15 +++++++++++++++ routes/originConda.js | 10 +++++----- schemas/coordinates-1.0.json | 5 +++++ schemas/swagger.yaml | 6 ++++++ 4 files changed, 31 insertions(+), 5 deletions(-) diff --git a/docs/determining-declared-license.md b/docs/determining-declared-license.md index 731d5de65..c589beb42 100644 --- a/docs/determining-declared-license.md +++ b/docs/determining-declared-license.md @@ -109,3 +109,18 @@ * source: https://cocoapods.org/ * The service then sets the declared license based on the registry information * The ClearlyDefined summarizer pulls registry information from 'https://raw.githubusercontent.com/CocoaPods/Specs/master + +### anaconda-main +* source: https://repo.anaconda.com/ +* The crawler gets registry information from https://repo.anaconda.com/pkgs/main +* The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information + +### anaconda-r +* source: https://repo.anaconda.com/ +* The crawler gets registry information from https://repo.anaconda.com/pkgs/r +* The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information + +### conda-forge +* source: https://conda.anaconda.org +* The crawler gets registry information from https://conda.anaconda.org/conda-forge +* The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information diff --git a/routes/originConda.js b/routes/originConda.js index 4d6fdf140..f9fc034eb 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -26,13 +26,13 @@ async function fetchCondaChannelData(channel) { async function fetchCondaRepoData(channel, subdir) { const key = `${channel}-${subdir}-repoData` - let channelData = condaCache.get(key) - if (!channelData) { + let repoData = condaCache.get(key) + if (!repoData) { const url = `${condaChannels[channel]}/${subdir}/repodata.json` - channelData = await requestPromise({ url, method: 'GET', json: true }) - condaCache.put(key, channelData, 8 * 60 * 60 * 1000) // 8 hours + repoData = await requestPromise({ url, method: 'GET', json: true }) + condaCache.put(key, repoData, 8 * 60 * 60 * 1000) // 8 hours } - return channelData + return repoData } router.get( diff --git a/schemas/coordinates-1.0.json b/schemas/coordinates-1.0.json index 023ca4012..ffb996b85 100644 --- a/schemas/coordinates-1.0.json +++ b/schemas/coordinates-1.0.json @@ -13,6 +13,8 @@ "type": { "enum": [ "npm", + "conda", + "condasrc", "crate", "git", "maven", @@ -32,8 +34,11 @@ }, "provider": { "enum": [ + "anaconda-main", + "anaconda-r", "npmjs", "cocoapods", + "conda-forge", "cratesio", "github", "gitlab", diff --git a/schemas/swagger.yaml b/schemas/swagger.yaml index 441ac4566..4772f66c3 100644 --- a/schemas/swagger.yaml +++ b/schemas/swagger.yaml @@ -423,6 +423,7 @@ components: example: - git/github/microsoft/redie/194269b5b7010ad6f8dc4ef608c88128615031ca - npm/npmjs/-/redie/0.3.0 + - conda/conda-forge/linux-64/21cmfast/3.1.1-py36 noticeFile: type: object @@ -531,6 +532,8 @@ components: type: string enum: - composer + - conda + - condasrc - crate - deb - debsrc @@ -551,7 +554,10 @@ components: schema: type: string enum: + - anaconda-main + - anaconda-r - cocoapods + - conda-forge - cratesio - debian - github From 356fff26d4a93dcb63e16ce6192aac25d5df3824 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Mon, 12 Feb 2024 14:20:01 +0000 Subject: [PATCH 08/13] [conda] fixed docs and schema --- docs/determining-declared-license.md | 14 ++------------ schemas/swagger.yaml | 2 +- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/docs/determining-declared-license.md b/docs/determining-declared-license.md index c589beb42..ded8128c5 100644 --- a/docs/determining-declared-license.md +++ b/docs/determining-declared-license.md @@ -110,17 +110,7 @@ * The service then sets the declared license based on the registry information * The ClearlyDefined summarizer pulls registry information from 'https://raw.githubusercontent.com/CocoaPods/Specs/master -### anaconda-main -* source: https://repo.anaconda.com/ -* The crawler gets registry information from https://repo.anaconda.com/pkgs/main -* The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information - -### anaconda-r -* source: https://repo.anaconda.com/ -* The crawler gets registry information from https://repo.anaconda.com/pkgs/r -* The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information - -### conda-forge -* source: https://conda.anaconda.org +### conda +* source: conda-forge anaconda-main, or anaconda-r (https://conda.anaconda.org) * The crawler gets registry information from https://conda.anaconda.org/conda-forge * The ClearlyDefined summarizer sets the declared license to the license(s) in the registry information diff --git a/schemas/swagger.yaml b/schemas/swagger.yaml index 4772f66c3..a0d031c28 100644 --- a/schemas/swagger.yaml +++ b/schemas/swagger.yaml @@ -574,7 +574,7 @@ components: name: namespace in: path required: true - description: many component systems have namespaces. GitHub orgs, NPM namespace, Maven group id, ... This segment must be supplied. If your component does not have a namespace, use '-' (ASCII hyphen). + description: many component systems have namespaces. GitHub orgs, NPM namespace, Maven group id, Conda Subdir/Architecture ... This segment must be supplied. If your component does not have a namespace, use '-' (ASCII hyphen). schema: type: string name: From 153f0e5ab94ddffef0243422396cc09494eeec43 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Wed, 14 Feb 2024 10:40:38 +0000 Subject: [PATCH 09/13] [conda] added optional namespaces/subdir to package revision search --- routes/originConda.js | 53 +++++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 25 deletions(-) diff --git a/routes/originConda.js b/routes/originConda.js index 44e6a0961..4bd5b08eb 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -36,38 +36,41 @@ async function fetchCondaRepoData(channel, subdir) { } router.get( - '/:channel/:name/revisions', + '/:channel/:subdir/:name/revisions', asyncMiddleware(async (request, response) => { - const { channel, name } = request.params + const { channel, subdir, name } = request.params if (!condaChannels[channel]) { return response.status(404).send([]) } let channelData = await fetchCondaChannelData(channel) - if (channelData.packages[name]) { - let revisions = [] - for (let subdir of channelData.packages[name].subdirs) { - const repoData = await fetchCondaRepoData(channel, subdir) - if (repoData['packages']) { - Object.entries(repoData['packages']) - .forEach(([, packageData]) => { - if (packageData.name === name) { - revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) - } - }) - } - if (repoData['packages.conda']) { - Object.entries(repoData['packages.conda']) - .forEach(([, packageData]) => { - if (packageData.name === name) { - revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) - } - }) - } + if (!channelData.packages[name]) { + return response.status(404).send(`Package ${name} not found in Conda channel ${channel}`) + } + if (subdir !== '-' && !channelData.subdirs.find(x => x == subdir)) { + return response.status(404).send(`Subdir ${subdir} is non-existent in Conda channel ${channel}`) + } + let revisions = [] + let subdirs = subdir === '-' ? channelData.packages[name].subdirs : [subdir] + for (let subdir of subdirs) { + const repoData = await fetchCondaRepoData(channel, subdir) + if (repoData['packages']) { + Object.entries(repoData['packages']) + .forEach(([, packageData]) => { + if (packageData.name === name) { + revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) + } + }) + } + if (repoData['packages.conda']) { + Object.entries(repoData['packages.conda']) + .forEach(([, packageData]) => { + if (packageData.name === name) { + revisions.push(`${subdir}:${packageData.version}-${packageData.build}`) + } + }) } - return response.status(200).send(uniq(revisions)) - } else { - return response.status(404).send([]) } + return response.status(200).send(uniq(revisions)) }) ) From 88d7486d8a7cf7a72ab4bc176803dd5ba7e78848 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Thu, 15 Feb 2024 09:28:55 +0000 Subject: [PATCH 10/13] [conda] fixed error message for unrecognized channel --- routes/originConda.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/originConda.js b/routes/originConda.js index 4bd5b08eb..99ed4f4ab 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -40,7 +40,7 @@ router.get( asyncMiddleware(async (request, response) => { const { channel, subdir, name } = request.params if (!condaChannels[channel]) { - return response.status(404).send([]) + return response.status(404).send(`Unrecognized Conda channel ${channel}`) } let channelData = await fetchCondaChannelData(channel) if (!channelData.packages[name]) { From 24c49e2660326489bb40f70918c2d131dfce4f65 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Fri, 1 Mar 2024 23:29:44 +0000 Subject: [PATCH 11/13] Update schemas/definition-1.0.json Co-authored-by: lisahoong --- schemas/definition-1.0.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/definition-1.0.json b/schemas/definition-1.0.json index 45e8258d7..e6b7b0814 100644 --- a/schemas/definition-1.0.json +++ b/schemas/definition-1.0.json @@ -33,7 +33,7 @@ "enum": [ "npm", "conda", - "condasrc", + "condasource", "crate", "git", "maven", From 3b8b4176f52d77fe12dc7a0756e532b1170b255c Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Sat, 2 Mar 2024 00:11:17 +0000 Subject: [PATCH 12/13] Update definition-1.0.json --- schemas/definition-1.0.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schemas/definition-1.0.json b/schemas/definition-1.0.json index e6b7b0814..4383b13df 100644 --- a/schemas/definition-1.0.json +++ b/schemas/definition-1.0.json @@ -33,7 +33,7 @@ "enum": [ "npm", "conda", - "condasource", + "condasrc", "crate", "git", "maven", @@ -476,4 +476,4 @@ } } } -} \ No newline at end of file +} From 5de41d036991ce2871e28549ff999b1ac3691b13 Mon Sep 17 00:00:00 2001 From: Basit Ayantunde Date: Tue, 19 Mar 2024 13:26:52 +0000 Subject: [PATCH 13/13] [conda] fixed XSS vulnerabilities --- routes/originConda.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/routes/originConda.js b/routes/originConda.js index 99ed4f4ab..d978a6c4c 100644 --- a/routes/originConda.js +++ b/routes/originConda.js @@ -38,7 +38,10 @@ async function fetchCondaRepoData(channel, subdir) { router.get( '/:channel/:subdir/:name/revisions', asyncMiddleware(async (request, response) => { - const { channel, subdir, name } = request.params + let { channel, subdir, name } = request.params + channel = encodeURIComponent(channel) + subdir = encodeURIComponent(subdir) + name = encodeURIComponent(channel) if (!condaChannels[channel]) { return response.status(404).send(`Unrecognized Conda channel ${channel}`) } @@ -77,7 +80,9 @@ router.get( router.get( '/:channel/:name', asyncMiddleware(async (request, response) => { - const { channel, name } = request.params + let { channel, name } = request.params + channel = encodeURIComponent(channel) + name = encodeURIComponent(name) if (!condaChannels[channel]) { return response.status(404).send([]) }