diff --git a/src/packagedcode/maven.py b/src/packagedcode/maven.py
index ed1ee81279..a007a36121 100644
--- a/src/packagedcode/maven.py
+++ b/src/packagedcode/maven.py
@@ -766,13 +766,14 @@ def _get_comments(self, xml=None):
def _find_licenses(self):
"""Return an iterable of license mappings."""
for lic in self.pom_data.findall('licenses/license'):
- yield dict([
- ('name', self._get_attribute('name', lic)),
- ('url', self._get_attribute('url', lic)),
- ('comments', self._get_attribute('comments', lic)),
- # arcane and seldom used
- ('distribution', self._get_attribute('distribution', lic)),
- ])
+ yield {"license": dict([
+ ('name', self._get_attribute('name', lic)),
+ ('url', self._get_attribute('url', lic)),
+ ('comments', self._get_attribute('comments', lic)),
+ # arcane and seldom used
+ ('distribution', self._get_attribute('distribution', lic)),
+ ])
+ }
def _find_parties(self, key='developers/developer'):
"""Return an iterable of party mappings for a given xpath."""
@@ -1254,7 +1255,7 @@ def _parse(
# complex defeinition in Maven
qualifiers['type'] = extension
- extracted_license_statement = pom.licenses
+ extracted_license_statement = clean_licenses(pom.licenses) or None
group_id = pom.group_id
artifact_id = pom.artifact_id
@@ -1325,52 +1326,121 @@ def get_license_detections_for_extracted_license_statement(
approximate=True,
expression_symbols=None,
):
+ """
+ Return license detections from a Maven POM license data structure.
+ This looks like this in XML, and some attributes are more important than others.
+ Which one exists and whether we can detect a proper license in each also determines which
+ attribute we need to consider.
+ The original XML has this shape:
+
+
+ Apache-2.0
+ https://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+ notes...
+
+
+ The data structure we keep has this shape:
+ [{"license":
+ {
+ "name": "Apache-2.0",
+ "url": "https://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": "notes...",
+ }
+ },
+ .... other license]
+ """
+
from packagedcode.licensing import get_normalized_license_detections
from packagedcode.licensing import get_license_detections_for_extracted_license_statement
- if not cls.check_extracted_license_statement_structure(extracted_license):
+ if not is_standard_maven_license_data_structure(licenses=extracted_license):
+ # use the generic detection
return get_normalized_license_detections(
extracted_license=extracted_license,
try_as_expression=try_as_expression,
approximate=approximate,
expression_symbols=expression_symbols,
)
+ extracted_license = clean_licenses(extracted_license)
+ extracted_license_statement = saneyaml.dump(extracted_license)
- new_extracted_license = extracted_license.copy()
-
- for license_entry in new_extracted_license:
- license_entry.pop("distribution")
- if not license_entry.get("name"):
- license_entry.pop("name")
- if not license_entry.get("url"):
- license_entry.pop("url")
- if not license_entry.get("comments"):
- license_entry.pop("comments")
-
- extracted_license_statement = saneyaml.dump(new_extracted_license)
-
- return get_license_detections_for_extracted_license_statement(
+ detections = get_license_detections_for_extracted_license_statement(
extracted_license_statement=extracted_license_statement,
try_as_expression=try_as_expression,
approximate=approximate,
expression_symbols=expression_symbols,
)
+ # TODO: if we have any unknown license, we need to try harder
+ # We can detect each license item individually and check if the unknown was detected
+ # in the name, URL or comment field.
+ # name, URL, comments
+ # name unknwon: keep that unknown in all cases
+ # URL or comments with unknown, but name not unknown: we want to combine the unknown
+ # matches with the correct name match
- @classmethod
- def check_extracted_license_statement_structure(cls, extracted_license):
+ return detections
- is_list_of_mappings = False
- if not isinstance(extracted_license, list):
- return is_list_of_mappings
- else:
- is_list_of_mappings = True
- for extracted_license_item in extracted_license:
- if not isinstance(extracted_license_item, dict):
- is_list_of_mappings = False
- break
+def clean_licenses(licenses):
+ """
+ Return a modified, cleaned ``licenses`` list of POM license data cleaned from unwanted data
+ (some fields, empty entries, etc).
+ Each item in the list has this shape:
+ [
+ {"license": {"name": "Apache-2.0", "url": "https://www... ", "comments": "..."} },
+ {"license": {other fields} },
+ ]
+ """
+ for licitem in (licenses or []):
+ if not isinstance(licitem, dict):
+ continue
+
+ license_attributes = licitem.get("license")
+ if not license_attributes or not len(licitem) == 1:
+ continue
+
+ license_attributes.pop("distribution", None)
+ if not license_attributes.get("name"):
+ license_attributes.pop("name", None)
+ if not license_attributes.get("url"):
+ license_attributes.pop("url", None)
+ if not license_attributes.get("comments"):
+ license_attributes.pop("comments", None)
+
+ return licenses
- return is_list_of_mappings
+
+def is_standard_maven_license_data_structure(licenses):
+ """
+ Return True if ``licenses`` has the structure expected from a Maven POM license data. The data
+ is a list of dicts of dicts, each top dict with a single item as {"license" : {mapping of
+ attributes}. We expect the POM license data to be in that shape in most cases, except for legacy
+ non POM 4 data.
+ Each item in the list has this shape:
+ [
+ {"license": {"name": "Apache-2.0", "url": "https://www... ", "comments": "..."} },
+ {"license": {other fields} },
+ ]
+
+ """
+ if not isinstance(licenses, list):
+ return False
+
+ fields = ("name", "url", "comment",)
+
+ for item in licenses:
+ if not isinstance(item, dict):
+ return False
+ if not len(item) == 1:
+ return False
+ litem = item.get('license') or {}
+ if not isinstance(litem, dict):
+ return False
+ if not any(field in item for field in fields):
+ return False
+
+ return True
def build_vcs_and_code_view_urls(scm):
diff --git a/tests/formattedcode/data/common/manifests-expected.json b/tests/formattedcode/data/common/manifests-expected.json
index 58df7600a5..b235333de7 100644
--- a/tests/formattedcode/data/common/manifests-expected.json
+++ b/tests/formattedcode/data/common/manifests-expected.json
@@ -44,7 +44,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_98.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE",
- "matched_text": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html"
+ "matched_text": "name: Common Development and Distribution License (CDDL) v1.0\nurl: http://www.sun.com/cddl/cddl.html"
}
],
"identifier": "cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c"
@@ -53,7 +53,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
+ "extracted_license_statement": "- license:\n name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources"
@@ -1142,7 +1142,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_98.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE",
- "matched_text": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html"
+ "matched_text": "name: Common Development and Distribution License (CDDL) v1.0\nurl: http://www.sun.com/cddl/cddl.html"
}
],
"identifier": "cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c"
@@ -1151,7 +1151,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
+ "extracted_license_statement": "- license:\n name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources"
diff --git a/tests/formattedcode/data/common/manifests-expected.jsonlines b/tests/formattedcode/data/common/manifests-expected.jsonlines
index 7bce8a21aa..ff4dfeb3ca 100644
--- a/tests/formattedcode/data/common/manifests-expected.jsonlines
+++ b/tests/formattedcode/data/common/manifests-expected.jsonlines
@@ -76,7 +76,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_98.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE",
- "matched_text": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html"
+ "matched_text": "name: Common Development and Distribution License (CDDL) v1.0\nurl: http://www.sun.com/cddl/cddl.html"
}
],
"identifier": "cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c"
@@ -85,7 +85,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
+ "extracted_license_statement": "- license:\n name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources"
@@ -1188,7 +1188,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_98.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE",
- "matched_text": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html"
+ "matched_text": "name: Common Development and Distribution License (CDDL) v1.0\nurl: http://www.sun.com/cddl/cddl.html"
}
],
"identifier": "cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c"
@@ -1197,7 +1197,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
+ "extracted_license_statement": "- license:\n name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources"
diff --git a/tests/formattedcode/data/common/manifests-expected.yaml b/tests/formattedcode/data/common/manifests-expected.yaml
index e40a3332c3..a561b414c6 100644
--- a/tests/formattedcode/data/common/manifests-expected.yaml
+++ b/tests/formattedcode/data/common/manifests-expected.yaml
@@ -105,15 +105,16 @@ packages:
rule_identifier: cddl-1.0_98.RULE
rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE
matched_text: |
- - name: Common Development and Distribution License (CDDL) v1.0
- url: http://www.sun.com/cddl/cddl.html
+ name: Common Development and Distribution License (CDDL) v1.0
+ url: http://www.sun.com/cddl/cddl.html
identifier: cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c
other_license_expression:
other_license_expression_spdx:
other_license_detections: []
extracted_license_statement: |
- - name: Common Development and Distribution License (CDDL) v1.0
- url: http://www.sun.com/cddl/cddl.html
+ - license:
+ name: Common Development and Distribution License (CDDL) v1.0
+ url: http://www.sun.com/cddl/cddl.html
notice_text:
source_packages:
- pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources
@@ -818,8 +819,8 @@ license_detections:
rule_identifier: cddl-1.0_98.RULE
rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE
matched_text: |
- - name: Common Development and Distribution License (CDDL) v1.0
- url: http://www.sun.com/cddl/cddl.html
+ name: Common Development and Distribution License (CDDL) v1.0
+ url: http://www.sun.com/cddl/cddl.html
- identifier: lgpl_3_0-272571eb-5e68-95b6-ddb0-71de2d8df321
license_expression: lgpl-3.0
license_expression_spdx: LGPL-3.0-only
@@ -2006,15 +2007,16 @@ files:
rule_identifier: cddl-1.0_98.RULE
rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE
matched_text: |
- - name: Common Development and Distribution License (CDDL) v1.0
- url: http://www.sun.com/cddl/cddl.html
+ name: Common Development and Distribution License (CDDL) v1.0
+ url: http://www.sun.com/cddl/cddl.html
identifier: cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c
other_license_expression:
other_license_expression_spdx:
other_license_detections: []
extracted_license_statement: |
- - name: Common Development and Distribution License (CDDL) v1.0
- url: http://www.sun.com/cddl/cddl.html
+ - license:
+ name: Common Development and Distribution License (CDDL) v1.0
+ url: http://www.sun.com/cddl/cddl.html
notice_text:
source_packages:
- pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources
diff --git a/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.json b/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.json
index f31bea23f6..6806b7791c 100644
--- a/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.json
+++ b/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Public Domain",
- "url": null,
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Public Domain",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.package.json b/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.package.json
index 3ba58460f8..1ee89dad0e 100644
--- a/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.package.json
+++ b/tests/packagedcode/data/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 70,
"rule_identifier": "public-domain_bare_words.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
+ "matched_text": "name: Public Domain"
}
],
"identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n",
+ "extracted_license_statement": "- license:\n name: Public Domain\n",
"notice_text": null,
"source_packages": [
"pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.json b/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.json
index 9e5ef5b840..ca5d5a59b0 100644
--- a/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.json
+++ b/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.package.json b/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.package.json
index f3cd1ccefb..9f1ed15c21 100644
--- a/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/aspectj/aspectjrt@1.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.json b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.json
index 333c89cbcc..4085fe0b19 100644
--- a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.json
+++ b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.aQute.biz",
"licenses": [
{
- "name": "This material is licensed under the Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "This material is licensed under the Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.package.json b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.package.json
index 9ea3ee2f36..7fa3bbb33b 100644
--- a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.package.json
+++ b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.203/bndlib-0.0.203.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_239.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_239.RULE",
- "matched_text": "- name: This material is licensed under the Apache Software License, Version 2.0"
+ "matched_text": "name: This material is licensed under the Apache Software License, Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_25.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-831e58f5-7cf7-3074-9727-f830ee5eb8df"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: This material is licensed under the Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: This material is licensed under the Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/biz.aQute/bndlib@0.0.203?classifier=sources"
diff --git a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.json b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.json
index 79a97c6022..c42b8b70f3 100644
--- a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.json
+++ b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.aQute.biz",
"licenses": [
{
- "name": "This material is licensed under the Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "This material is licensed under the Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.package.json b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.package.json
index c2cf5eee54..2a11824759 100644
--- a/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.package.json
+++ b/tests/packagedcode/data/m2/biz/aQute/bndlib/0.0.238/bndlib-0.0.238.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_239.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_239.RULE",
- "matched_text": "- name: This material is licensed under the Apache Software License, Version 2.0"
+ "matched_text": "name: This material is licensed under the Apache Software License, Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_25.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-831e58f5-7cf7-3074-9727-f830ee5eb8df"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: This material is licensed under the Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: This material is licensed under the Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/biz.aQute/bndlib@0.0.238?classifier=sources"
diff --git a/tests/packagedcode/data/m2/bytebuddy/pom.xml.json b/tests/packagedcode/data/m2/bytebuddy/pom.xml.json
index 70f11b6905..a8bfee8c8f 100644
--- a/tests/packagedcode/data/m2/bytebuddy/pom.xml.json
+++ b/tests/packagedcode/data/m2/bytebuddy/pom.xml.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": "A business-friendly OSS license",
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": "A business-friendly OSS license",
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/bytebuddy/pom.xml.package.json b/tests/packagedcode/data/m2/bytebuddy/pom.xml.package.json
index 592c278409..1266aa68d1 100644
--- a/tests/packagedcode/data/m2/bytebuddy/pom.xml.package.json
+++ b/tests/packagedcode/data/m2/bytebuddy/pom.xml.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1277.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1277.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n comments: A business-friendly OSS license"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt\ncomments: A business-friendly OSS license"
}
],
"identifier": "apache_2_0-a0cd95bb-90a3-a708-8b40-d282f4168353"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n comments: A business-friendly OSS license\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n comments: A business-friendly OSS license\n",
"notice_text": null,
"source_packages": [
"pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
diff --git a/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.json b/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.json
index ed80f870c5..e34c3663b2 100644
--- a/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.json
+++ b/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.package.json b/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.package.json
index 415763828d..c277cb9596 100644
--- a/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.package.json
+++ b/tests/packagedcode/data/m2/c3p0/c3p0/0.9.0.4/c3p0-0.9.0.4.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/c3p0/c3p0@0.9.0.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.json b/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.json
index 91c60bf6f3..c0c89fafdd 100644
--- a/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.json
+++ b/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.package.json b/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.package.json
index 5bf8e3e4aa..d194abb9e1 100644
--- a/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.package.json
+++ b/tests/packagedcode/data/m2/codec/commons-codec/1.3/commons-codec-1.3.pom.package.json
@@ -169,7 +169,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -178,7 +178,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-codec/commons-codec@1.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.json b/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.json
index 0aeb1bffec..9b5a44c926 100644
--- a/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.json
+++ b/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.package.json b/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.package.json
index 205e5fc1b8..bc607a4fd5 100644
--- a/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.package.json
+++ b/tests/packagedcode/data/m2/collections/commons-collections/3.2/commons-collections-3.2.pom.package.json
@@ -708,7 +708,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -717,7 +717,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-collections/commons-collections@3.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.json b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.json
index 00d20143db..c9a14c122c 100644
--- a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.json
+++ b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.jcraft.com/jsch",
"licenses": [
{
- "name": "BSD",
- "url": "http://www.jcraft.com/jsch/LICENSE.txt",
- "comments": "License information from http://www.jcraft.com/jsch",
- "distribution": null
+ "license": {
+ "name": "BSD",
+ "url": "http://www.jcraft.com/jsch/LICENSE.txt",
+ "comments": "License information from http://www.jcraft.com/jsch",
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.package.json b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.package.json
index f1a0036c79..8aa2db5f2b 100644
--- a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.package.json
+++ b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.23/jsch-0.1.23.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_jcraft_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE",
- "matched_text": " url: http://www.jcraft.com/jsch/LICENSE.txt"
+ "matched_text": "url: http://www.jcraft.com/jsch/LICENSE.txt"
},
{
"license_expression": "bsd-new",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_jcraft_3.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_jcraft_3.RULE",
- "matched_text": " comments: License information from http://www.jcraft.com/jsch"
+ "matched_text": "comments: License information from http://www.jcraft.com/jsch"
}
],
"identifier": "bsd_new-cb93014d-4035-1c17-df2b-272477a9ec37"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: BSD\n url: http://www.jcraft.com/jsch/LICENSE.txt\n comments: License information from http://www.jcraft.com/jsch\n",
+ "extracted_license_statement": "- license:\n name: BSD\n url: http://www.jcraft.com/jsch/LICENSE.txt\n comments: License information from http://www.jcraft.com/jsch\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.jcraft/jsch@0.1.23?classifier=sources"
diff --git a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.json b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.json
index d4c0c75b78..bc602d0f54 100644
--- a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.json
+++ b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.jcraft.com/jsch",
"licenses": [
{
- "name": "BSD",
- "url": "http://www.jcraft.com/jsch/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "BSD",
+ "url": "http://www.jcraft.com/jsch/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.package.json b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.package.json
index ea75cb392d..245dab2d3a 100644
--- a/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.package.json
+++ b/tests/packagedcode/data/m2/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_jcraft_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE",
- "matched_text": " url: http://www.jcraft.com/jsch/LICENSE.txt"
+ "matched_text": "url: http://www.jcraft.com/jsch/LICENSE.txt"
}
],
"identifier": "bsd_new-9b2ba589-3ced-488c-3ecb-90b41e97c23f"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: BSD\n url: http://www.jcraft.com/jsch/LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: BSD\n url: http://www.jcraft.com/jsch/LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.jcraft/jsch@0.1.27?classifier=sources"
diff --git a/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.json b/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.json
index 95802a9312..13c6fd105b 100644
--- a/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.json
+++ b/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://xstream.codehaus.org",
"licenses": [
{
- "name": "BSD style",
- "url": "http://xstream.codehaus.com/license.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "BSD style",
+ "url": "http://xstream.codehaus.com/license.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.package.json b/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.package.json
index 9470c17941..d946797bc8 100644
--- a/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.package.json
+++ b/tests/packagedcode/data/m2/com/thoughtworks/xstream/xstream-parent/1.2.2/xstream-parent-1.2.2.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 90,
"rule_identifier": "bsd-new_878.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_878.RULE",
- "matched_text": "- name: BSD style"
+ "matched_text": "name: BSD style"
},
{
"license_expression": "bsd-new",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_xstream_maven_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_xstream_maven_4.RULE",
- "matched_text": " url: http://xstream.codehaus.com/license.html"
+ "matched_text": "url: http://xstream.codehaus.com/license.html"
}
],
"identifier": "bsd_new-1fd78035-e7fa-7c3f-ed03-c132e990ddc8"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: BSD style\n url: http://xstream.codehaus.com/license.html\n",
+ "extracted_license_statement": "- license:\n name: BSD style\n url: http://xstream.codehaus.com/license.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.thoughtworks.xstream/xstream-parent@1.2.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/depman/foo.pom.json b/tests/packagedcode/data/m2/depman/foo.pom.json
index 43e59df37b..d538ebcfed 100644
--- a/tests/packagedcode/data/m2/depman/foo.pom.json
+++ b/tests/packagedcode/data/m2/depman/foo.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Apache License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Apache License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/depman/foo.pom.package.json b/tests/packagedcode/data/m2/depman/foo.pom.package.json
index 6f1e14b6d0..eb2563bac1 100644
--- a/tests/packagedcode/data/m2/depman/foo.pom.package.json
+++ b/tests/packagedcode/data/m2/depman/foo.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1379.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1379.RULE",
- "matched_text": "- name: Apache License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: Apache License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-1096ecf3-d346-9d22-51d7-abc4e11a8ad0"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-bom@3.0.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.json b/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.json
index 705abd643d..ab08cd3460 100644
--- a/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.json
+++ b/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.package.json b/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.package.json
index 89c0a2fc1a..99320e15b6 100644
--- a/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.package.json
+++ b/tests/packagedcode/data/m2/digester/commons-digester/1.8/commons-digester-1.8.pom.package.json
@@ -204,7 +204,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -213,7 +213,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-digester/commons-digester@1.8?classifier=sources"
diff --git a/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.json b/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.json
index 60b2318334..65c422a840 100644
--- a/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.json
+++ b/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.package.json b/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.package.json
index 52988a7734..003abb9771 100644
--- a/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.package.json
+++ b/tests/packagedcode/data/m2/el/commons-el/1.0/commons-el-1.0.pom.package.json
@@ -85,7 +85,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -94,7 +94,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-el/commons-el@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.json b/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.json
index 5f55a3b647..96ae6c98f5 100644
--- a/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.json
+++ b/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "HSQLDB License",
- "url": "http://hsqldb.org/web/hsqlLicense.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "HSQLDB License",
+ "url": "http://hsqldb.org/web/hsqlLicense.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.package.json b/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.package.json
index fd7ff00eb9..244f982b19 100644
--- a/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.package.json
+++ b/tests/packagedcode/data/m2/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_363.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_363.RULE",
- "matched_text": "- name: HSQLDB License"
+ "matched_text": "name: HSQLDB License"
},
{
"license_expression": "bsd-new",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_82.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_82.RULE",
- "matched_text": " url: http://hsqldb.org/web/hsqlLicense.html"
+ "matched_text": "url: http://hsqldb.org/web/hsqlLicense.html"
}
],
"identifier": "bsd_new-4b5f8fe0-ffc8-f64d-7809-e39f0b5fe0eb"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: HSQLDB License\n url: http://hsqldb.org/web/hsqlLicense.html\n",
+ "extracted_license_statement": "- license:\n name: HSQLDB License\n url: http://hsqldb.org/web/hsqlLicense.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/hsqldb/hsqldb@1.8.0.7?classifier=sources"
diff --git a/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.json b/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.json
index 7ac4088f97..97993303c3 100644
--- a/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.json
+++ b/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "MIT License",
- "url": "http://httpunit.sourceforge.net/doc/license.html",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "MIT License",
+ "url": "http://httpunit.sourceforge.net/doc/license.html",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.package.json b/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.package.json
index bfe2ceebf5..7e254e58bb 100644
--- a/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.package.json
+++ b/tests/packagedcode/data/m2/httpunit/httpunit/1.6.2/httpunit-1.6.2.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1106.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
- "matched_text": "- name: MIT License"
+ "matched_text": "name: MIT License"
},
{
"license_expression": "mit",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1144.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1144.RULE",
- "matched_text": " url: http://httpunit.sourceforge.net/doc/license.html"
+ "matched_text": "url: http://httpunit.sourceforge.net/doc/license.html"
}
],
"identifier": "mit-958a78c0-106f-dfae-5b61-5926248408f4"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MIT License\n url: http://httpunit.sourceforge.net/doc/license.html\n",
+ "extracted_license_statement": "- license:\n name: MIT License\n url: http://httpunit.sourceforge.net/doc/license.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/httpunit/httpunit@1.6.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.json b/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.json
index 0b039c87e4..d799a7681f 100644
--- a/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.json
+++ b/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.package.json b/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.package.json
index 08c22b9c30..93a4b88c1f 100644
--- a/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.package.json
+++ b/tests/packagedcode/data/m2/io/commons-io/1.3.1/commons-io-1.3.1.pom.package.json
@@ -239,7 +239,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -248,7 +248,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-io/commons-io@1.3.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.json b/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.json
index b17b60d1b4..b5aeb5b7fb 100644
--- a/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.json
+++ b/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "lgpl",
- "url": "http://repository.jboss.com/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "lgpl",
+ "url": "http://repository.jboss.com/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.package.json b/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.package.json
index 51e839a5e2..d6604e4b0d 100644
--- a/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.package.json
+++ b/tests/packagedcode/data/m2/javassist/javassist/3.4.GA/javassist-3.4.GA.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 60,
"rule_identifier": "lgpl_bare_single_word.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: lgpl"
+ "matched_text": "name: lgpl"
},
{
"license_expression": "lgpl-2.0-plus",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.0-plus_51.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.0-plus_51.RULE",
- "matched_text": " url: http://repository.jboss.com/licenses/lgpl.txt"
+ "matched_text": "url: http://repository.jboss.com/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_0_plus-fc560f64-1829-6012-e096-e504c9ab8813"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: lgpl\n url: http://repository.jboss.com/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: lgpl\n url: http://repository.jboss.com/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javassist/javassist@3.4.GA?classifier=sources"
diff --git a/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.json b/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.json
index c74d40e07a..dfe4bb368b 100644
--- a/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.json
+++ b/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Common Development and Distribution License (CDDL) v1.0",
- "url": "http://www.sun.com/cddl/cddl.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Common Development and Distribution License (CDDL) v1.0",
+ "url": "http://www.sun.com/cddl/cddl.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.package.json b/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.package.json
index dabc6e213a..ae642fb4d0 100644
--- a/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.package.json
+++ b/tests/packagedcode/data/m2/javax/persistence/persistence-api/1.0/persistence-api-1.0.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_98.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_98.RULE",
- "matched_text": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html"
+ "matched_text": "name: Common Development and Distribution License (CDDL) v1.0\nurl: http://www.sun.com/cddl/cddl.html"
}
],
"identifier": "cddl_1_0-b17acf03-1e4f-20e6-cbb8-1b6945ee4c4c"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
+ "extracted_license_statement": "- license:\n name: Common Development and Distribution License (CDDL) v1.0\n url: http://www.sun.com/cddl/cddl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/javax.persistence/persistence-api@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.json b/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.json
index e0b6fa17aa..88f731a59e 100644
--- a/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.json
+++ b/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.jboss.org/products/javassist.html",
"licenses": [
{
- "name": "MPL 1.1",
- "url": "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html",
- "comments": "Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately.",
- "distribution": null
+ "license": {
+ "name": "MPL 1.1",
+ "url": "http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html",
+ "comments": "Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately.",
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.package.json b/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.package.json
index dfad192200..6ed7eaba04 100644
--- a/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/jboss/javassist/3.3.ga/javassist-3.3.ga.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 50,
"rule_identifier": "spdx_license_id_mpl-1.1_for_mpl-1.1.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE",
- "matched_text": "- name: MPL 1.1"
+ "matched_text": "name: MPL 1.1"
},
{
"license_expression": "mpl-1.1 OR lgpl-2.1-plus",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "mpl-1.1_or_lgpl-2.1-plus_6.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.RULE",
- "matched_text": " url: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html"
+ "matched_text": "url: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html"
},
{
"license_expression": "mpl-1.1 OR lgpl-2.1-plus",
@@ -80,7 +80,7 @@
"rule_relevance": 100,
"rule_identifier": "mpl-1.1_or_lgpl-2.1-plus_5.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.RULE",
- "matched_text": " comments: Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately."
+ "matched_text": "comments: Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately."
}
],
"identifier": "mpl_1_1_and__mpl_1_1_or_lgpl_2_1_plus-78e94784-b15c-76e4-0a76-6ca49b732494"
@@ -89,7 +89,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MPL 1.1\n url: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html\n comments: Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately.\n",
+ "extracted_license_statement": "- license:\n name: MPL 1.1\n url: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html\n comments: Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately.\n",
"notice_text": null,
"source_packages": [
"pkg:maven/jboss/javassist@3.3.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.json b/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.json
index 1f1b36f3e3..5790af85e3 100644
--- a/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.json
+++ b/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.package.json b/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.package.json
index 369615e959..7128c3470d 100644
--- a/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.package.json
+++ b/tests/packagedcode/data/m2/jboss/jboss-archive-browsing/5.0.0alpha-200607201-119/jboss-archive-browsing-5.0.0alpha-200607201-119.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/jboss/jboss-archive-browsing@5.0.0alpha-200607201-119?classifier=sources"
diff --git a/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.json b/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.json
index ac6da0832b..ba910b9d1a 100644
--- a/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.json
+++ b/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jtidy.sf.net",
"licenses": [
{
- "name": "Java HTML Tidy License",
- "url": "http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Java HTML Tidy License",
+ "url": "http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.package.json b/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.package.json
index 93724fb5ef..bdcf88a633 100644
--- a/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.package.json
+++ b/tests/packagedcode/data/m2/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "tidy_2.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/tidy_2.RULE",
- "matched_text": "- name: Java HTML Tidy License"
+ "matched_text": "name: Java HTML Tidy License"
}
],
"identifier": "tidy-45701b40-0018-576f-ce3e-64441b0a1d40"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Java HTML Tidy License\n url: http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95\n",
+ "extracted_license_statement": "- license:\n name: Java HTML Tidy License\n url: http://svn.sourceforge.net/viewvc/*checkout*/jtidy/trunk/jtidy/LICENSE.txt?revision=95\n",
"notice_text": null,
"source_packages": [
"pkg:maven/jtidy/jtidy@4aug2000r7-dev?classifier=sources"
diff --git a/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.json b/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.json
index 3238156860..c9e3d1fc2c 100644
--- a/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.json
+++ b/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.junit.org",
"licenses": [
{
- "name": "Common Public License Version 1.0",
- "url": "http://www.opensource.org/licenses/cpl1.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Common Public License Version 1.0",
+ "url": "http://www.opensource.org/licenses/cpl1.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.package.json b/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.package.json
index 8b1bea8c29..9f027f9eff 100644
--- a/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.package.json
+++ b/tests/packagedcode/data/m2/junit/junit/3.8.1/junit-3.8.1.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_5.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_5.RULE",
- "matched_text": "- name: Common Public License Version 1.0"
+ "matched_text": "name: Common Public License Version 1.0"
},
{
"license_expression": "cpl-1.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_10.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_10.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/cpl1.0.txt"
+ "matched_text": "url: http://www.opensource.org/licenses/cpl1.0.txt"
}
],
"identifier": "cpl_1_0-f49145e8-d9e9-2a1a-5e83-1d459e6693dd"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/junit/junit@3.8.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.json b/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.json
index 79bd7c2807..ec5d091588 100644
--- a/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.json
+++ b/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.junit.org",
"licenses": [
{
- "name": "Common Public License Version 1.0",
- "url": "http://www.opensource.org/licenses/cpl1.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Common Public License Version 1.0",
+ "url": "http://www.opensource.org/licenses/cpl1.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.package.json b/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.package.json
index efe4fbb002..d8bad45a55 100644
--- a/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.package.json
+++ b/tests/packagedcode/data/m2/junit/junit/3.8.2/junit-3.8.2.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_5.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_5.RULE",
- "matched_text": "- name: Common Public License Version 1.0"
+ "matched_text": "name: Common Public License Version 1.0"
},
{
"license_expression": "cpl-1.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_10.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_10.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/cpl1.0.txt"
+ "matched_text": "url: http://www.opensource.org/licenses/cpl1.0.txt"
}
],
"identifier": "cpl_1_0-f49145e8-d9e9-2a1a-5e83-1d459e6693dd"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/junit/junit@3.8.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.json b/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.json
index 836c80781b..3cc9e51806 100644
--- a/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.json
+++ b/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.junit.org",
"licenses": [
{
- "name": "Common Public License Version 1.0",
- "url": "http://www.opensource.org/licenses/cpl1.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Common Public License Version 1.0",
+ "url": "http://www.opensource.org/licenses/cpl1.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.package.json b/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.package.json
index 2bd9033097..8ccc58a983 100644
--- a/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.package.json
+++ b/tests/packagedcode/data/m2/junit/junit/4.4/junit-4.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_5.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_5.RULE",
- "matched_text": "- name: Common Public License Version 1.0"
+ "matched_text": "name: Common Public License Version 1.0"
},
{
"license_expression": "cpl-1.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "cpl-1.0_10.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cpl-1.0_10.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/cpl1.0.txt"
+ "matched_text": "url: http://www.opensource.org/licenses/cpl1.0.txt"
}
],
"identifier": "cpl_1_0-f49145e8-d9e9-2a1a-5e83-1d459e6693dd"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Common Public License Version 1.0\n url: http://www.opensource.org/licenses/cpl1.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/junit/junit@4.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.json b/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.json
index b557f5ad43..a9bb460c40 100644
--- a/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.json
+++ b/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.package.json b/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.package.json
index a466ba1e75..30d738889a 100644
--- a/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.package.json
+++ b/tests/packagedcode/data/m2/lang/commons-lang/2.1/commons-lang-2.1.pom.package.json
@@ -547,7 +547,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -556,7 +556,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-lang/commons-lang@2.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.json b/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.json
index 001d7e3551..5dc8a22633 100644
--- a/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.json
+++ b/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.package.json b/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.package.json
index f9220aa8f7..34fa272c92 100644
--- a/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.package.json
+++ b/tests/packagedcode/data/m2/lang/commons-lang/2.3/commons-lang-2.3.pom.package.json
@@ -624,7 +624,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -633,7 +633,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-lang/commons-lang@2.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.json b/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.json
index 46acc8d1e3..2ae85fc01a 100644
--- a/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.json
+++ b/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.package.json b/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.package.json
index 536777e405..13718c04ff 100644
--- a/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.package.json
+++ b/tests/packagedcode/data/m2/log4j/log4j/1.2.15/log4j-1.2.15.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/log4j/log4j@1.2.15?classifier=sources"
diff --git a/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.json b/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.json
index 72a855dca6..ae7a899b38 100644
--- a/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.json
+++ b/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.package.json b/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.package.json
index 724aa64d5b..c500c97d5d 100644
--- a/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.package.json
+++ b/tests/packagedcode/data/m2/logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.package.json
@@ -113,7 +113,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -122,7 +122,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-logging/commons-logging@1.0.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.json b/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.json
index 52f9bdf3d8..05f24b349f 100644
--- a/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.json
+++ b/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.package.json b/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.package.json
index 28a3bdd345..40c91205ad 100644
--- a/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.package.json
+++ b/tests/packagedcode/data/m2/logging/commons-logging/1.1/commons-logging-1.1.pom.package.json
@@ -134,7 +134,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -143,7 +143,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-logging/commons-logging@1.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.json b/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.json
index ef1f8da681..51205ebd7c 100644
--- a/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.json
+++ b/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The GNU General Public License, Version 2",
- "url": "http://www.gnu.org/licenses/gpl.txt",
- "comments": "MySQL Connector/J contains exceptions to GPL requirements when linking with other components\n \t\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\n \t\tin this distribution for more details.",
- "distribution": "repo"
+ "license": {
+ "name": "The GNU General Public License, Version 2",
+ "url": "http://www.gnu.org/licenses/gpl.txt",
+ "comments": "MySQL Connector/J contains exceptions to GPL requirements when linking with other components\n \t\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\n \t\tin this distribution for more details.",
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.package.json b/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.package.json
index 4ac19572ec..297d82ee8c 100644
--- a/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.package.json
+++ b/tests/packagedcode/data/m2/mysql/mysql-connector-java/5.0.4/mysql-connector-java-5.0.4.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "gpl-2.0_with_mysql-linking-exception-2018_3.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.RULE",
- "matched_text": "- name: The GNU General Public License, Version 2\n url: http://www.gnu.org/licenses/gpl.txt\n comments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\\n\\\n \\ \\t\\tin this distribution for more details.\""
+ "matched_text": "name: The GNU General Public License, Version 2\nurl: http://www.gnu.org/licenses/gpl.txt\ncomments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\\n\\\n \\ \\t\\tin this distribution for more details.\""
}
],
"identifier": "gpl_2_0_with_mysql_linking_exception_2018-427caeec-d665-62c3-0639-0449ce506336"
@@ -62,18 +62,18 @@
"matched_length": 52,
"match_coverage": 100.0,
"rule_relevance": 100,
- "rule_identifier": "package-manifest-unknown-91b1be345430234b155decbb3e945d9349c09ea1",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-91b1be345430234b155decbb3e945d9349c09ea1",
- "matched_text": "license - name: The GNU General Public License, Version 2\n url: http://www.gnu.org/licenses/gpl.txt\n comments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\\n\\\n \\ \\t\\tin this distribution for more details.\""
+ "rule_identifier": "package-manifest-unknown-8f3fc16a5aed4b24baf1bf93c65f564682fc92ed",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-8f3fc16a5aed4b24baf1bf93c65f564682fc92ed",
+ "matched_text": "license name: The GNU General Public License, Version 2\nurl: http://www.gnu.org/licenses/gpl.txt\ncomments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\\n\\\n \\ \\t\\tin this distribution for more details.\""
}
],
- "identifier": "unknown-f388d848-2fef-6c1f-5ca8-44f92b429373"
+ "identifier": "unknown-5bccd291-0154-44bf-d6ef-7731a29e9b2d"
}
],
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The GNU General Public License, Version 2\n url: http://www.gnu.org/licenses/gpl.txt\n comments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J\\n\\\n \\ \\t\\tin this distribution for more details.\"\n",
+ "extracted_license_statement": "- license:\n name: The GNU General Public License, Version 2\n url: http://www.gnu.org/licenses/gpl.txt\n comments: \"MySQL Connector/J contains exceptions to GPL requirements when linking with other\\\n \\ components\\n \\t\\tthat are licensed under OSI-approved open source licenses, see\\\n \\ EXCEPTIONS-CONNECTOR-J\\n \\t\\tin this distribution for more details.\"\n",
"notice_text": null,
"source_packages": [
"pkg:maven/mysql/mysql-connector-java@5.0.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.json b/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.json
index ce44e25e66..b041209d30 100644
--- a/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.json
+++ b/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://ehcache.sourceforge.net/LICENSE.txt",
- "comments": "The license is the standard wording from the Apache license, but with\n Greg Luck as copyright\n owner.",
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://ehcache.sourceforge.net/LICENSE.txt",
+ "comments": "The license is the standard wording from the Apache license, but with\n Greg Luck as copyright\n owner.",
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.package.json b/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.package.json
index e9e0565a2c..af167a812d 100644
--- a/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.package.json
+++ b/tests/packagedcode/data/m2/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.pom.package.json
@@ -92,7 +92,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1326.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1326.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://ehcache.sourceforge.net/LICENSE.txt\n comments: |\n The license is the standard wording from the Apache license, but with"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://ehcache.sourceforge.net/LICENSE.txt\ncomments: |\n The license is the standard wording from the Apache license, but with"
}
],
"identifier": "apache_2_0-61721ce2-7f9f-9b2f-8c4f-0bc3dbd263ff"
@@ -101,7 +101,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://ehcache.sourceforge.net/LICENSE.txt\n comments: |\n The license is the standard wording from the Apache license, but with\n Greg Luck as copyright\n owner.\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://ehcache.sourceforge.net/LICENSE.txt\n comments: |\n The license is the standard wording from the Apache license, but with\n Greg Luck as copyright\n owner.\n",
"notice_text": null,
"source_packages": [
"pkg:maven/net.sf.ehcache/ehcache@1.2.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.json b/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.json
index 06eb217c04..da5ac0e217 100644
--- a/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.json
+++ b/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://kobjects.org/",
"licenses": [
{
- "name": "The BSD License",
- "url": "http://www.opensource.org/licenses/bsd-license.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The BSD License",
+ "url": "http://www.opensource.org/licenses/bsd-license.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.package.json b/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.package.json
index 65e792ce91..7bb831ab44 100644
--- a/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.package.json
+++ b/tests/packagedcode/data/m2/net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2.pom.package.json
@@ -57,7 +57,7 @@
"rule_relevance": 99,
"rule_identifier": "bsd-new_145.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_145.RULE",
- "matched_text": "- name: The BSD License"
+ "matched_text": "name: The BSD License"
},
{
"license_expression": "bsd-new",
@@ -72,7 +72,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_335.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_335.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/bsd-license.html"
+ "matched_text": "url: http://www.opensource.org/licenses/bsd-license.html"
}
],
"identifier": "bsd_new-8c2f4fde-df38-c900-d576-b1ac6e730243"
@@ -81,7 +81,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The BSD License\n url: http://www.opensource.org/licenses/bsd-license.html\n",
+ "extracted_license_statement": "- license:\n name: The BSD License\n url: http://www.opensource.org/licenses/bsd-license.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/net.sf.kxml/kxml2@2.2.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.json b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.json
index 91b6a95f23..3d17aba2cd 100644
--- a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.json
+++ b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://sourceforge.net/projects/acegisecurity",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.package.json b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.package.json
index 19896f5ddc..7d7af26bb5 100644
--- a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.5/acegi-security-parent-1.0.5.pom.package.json
@@ -246,7 +246,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -255,7 +255,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.acegisecurity/acegi-security-parent@1.0.5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.json b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.json
index cf82544c07..acfcbd6bc0 100644
--- a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.json
+++ b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://sourceforge.net/projects/acegisecurity",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.package.json b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.package.json
index cd758e5789..5624dce9c8 100644
--- a/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.package.json
+++ b/tests/packagedcode/data/m2/org/acegisecurity/acegi-security-parent/1.0.7/acegi-security-parent-1.0.7.pom.package.json
@@ -246,7 +246,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -255,7 +255,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.acegisecurity/acegi-security-parent@1.0.7?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.json b/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.json
index 567681b338..b80569c8f9 100644
--- a/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.json
+++ b/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "LGPL 2.1",
- "url": "http://www.gnu.org/licenses/lgpl.html",
- "comments": "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1",
- "distribution": "repo"
+ "license": {
+ "name": "LGPL 2.1",
+ "url": "http://www.gnu.org/licenses/lgpl.html",
+ "comments": "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1",
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.package.json b/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.package.json
index ff5aed660e..88965c23d7 100644
--- a/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/ajax4jsf/master/1.1.1/master-1.1.1.pom.package.json
@@ -64,7 +64,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1_85.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_85.RULE",
- "matched_text": "- name: LGPL 2.1"
+ "matched_text": "name: LGPL 2.1"
},
{
"license_expression": "lgpl-2.0-plus",
@@ -79,7 +79,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl_3.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_3.RULE",
- "matched_text": " url: http://www.gnu.org/licenses/lgpl.html"
+ "matched_text": "url: http://www.gnu.org/licenses/lgpl.html"
},
{
"license_expression": "lgpl-2.1",
@@ -94,7 +94,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1_36.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_36.RULE",
- "matched_text": " comments: GNU LESSER GENERAL PUBLIC LICENSE Version 2.1"
+ "matched_text": "comments: GNU LESSER GENERAL PUBLIC LICENSE Version 2.1"
}
],
"identifier": "lgpl_2_1_and_lgpl_2_0_plus-d477d49d-52e2-0d03-97d9-7786a7accad2"
@@ -103,7 +103,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: LGPL 2.1\n url: http://www.gnu.org/licenses/lgpl.html\n comments: GNU LESSER GENERAL PUBLIC LICENSE Version 2.1\n",
+ "extracted_license_statement": "- license:\n name: LGPL 2.1\n url: http://www.gnu.org/licenses/lgpl.html\n comments: GNU LESSER GENERAL PUBLIC LICENSE Version 2.1\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.ajax4jsf/master@1.1.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.json b/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.json
index a4a5e251a6..e36565734b 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.package.json b/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.package.json
index 2fa287fe30..b19335754f 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/1/apache-1.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache/apache@1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.json b/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.json
index c021a2ec75..cc26bd0a64 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.package.json b/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.package.json
index 45954eed91..be275caf0e 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/3/apache-3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache/apache@3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.json b/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.json
index 30d3ff0e30..517a54d358 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.package.json b/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.package.json
index d6b68b666c..cdb30de684 100644
--- a/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/apache/4/apache-4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache/apache@4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.json b/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.json
index 860557a49a..72b2951e98 100644
--- a/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.package.json b/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.package.json
index 2ed78ba6f8..42c7700056 100644
--- a/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/commons/commons-jaxrs/1.22/commons-jaxrs-1.22.pom.package.json
@@ -85,7 +85,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_182.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_182.RULE",
- "matched_text": "- name: The Apache License, Version 2.0"
+ "matched_text": "name: The Apache License, Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -100,7 +100,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1317.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1317.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-82b98cc4-34fe-2658-e07e-839e12d32ec7"
@@ -109,7 +109,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/edu.psu.swe.commons/commons-jaxrs@1.22?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.json b/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.json
index b3f31e9f99..318425ffe7 100644
--- a/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.json
@@ -20,10 +20,12 @@
"organization_url": "http://www.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.package.json b/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.package.json
index 4365ab6613..031e1f3ede 100644
--- a/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.geronimo.genesis.config/project-config@1.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.json
index f1807bad2a..7e4b3c6647 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.package.json
index b97766b254..d0295cb9c5 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.1/maven-2.0.1.pom.package.json
@@ -106,7 +106,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -115,7 +115,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven/maven@2.0.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.json
index 20d7ad1b78..9f0d4d6e95 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.package.json
index d6c6f6cb1b..8e5e22a025 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.package.json
@@ -106,7 +106,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -115,7 +115,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven/maven@2.0.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.json
index 4f94f216a9..0ef86d28a7 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.package.json
index b913870185..06f506a0b9 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0.4/maven-2.0.4.pom.package.json
@@ -106,7 +106,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -115,7 +115,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven/maven@2.0.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.json
index e034d989b9..e880c6a9cf 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.package.json
index a2c68b9fbb..a9d51fed29 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/maven/2.0/maven-2.0.pom.package.json
@@ -106,7 +106,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -115,7 +115,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven/maven@2.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.json b/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.json
index 98b001fb9d..8968e8c38a 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Apache License 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Apache License 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.package.json
index 5f981d58f8..d9d0af4c99 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/plugins/maven-dependency-plugin/2.0/maven-dependency-plugin-2.0.pom.package.json
@@ -64,7 +64,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1039.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1039.RULE",
- "matched_text": "- name: Apache License 2.0"
+ "matched_text": "name: Apache License 2.0"
},
{
"license_expression": "apache-2.0",
@@ -79,7 +79,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1317.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1317.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-a42caf3c-ce91-6d41-802e-10ddb89c0f86"
@@ -88,7 +88,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.plugins/maven-dependency-plugin@2.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.json
index 2098dcb139..6d613bb56a 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.package.json
index 3a8a4a8a53..2a050994bb 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-file/1.0-alpha-5/wagon-file-1.0-alpha-5.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.wagon/wagon-file@1.0-alpha-5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.json
index 72b1b704dd..0742bf6a97 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.package.json
index 8903e1ba86..403ce0d725 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-http-lightweight/1.0-alpha-5/wagon-http-lightweight-1.0-alpha-5.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@1.0-alpha-5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.json
index 7cbdfb456c..740bee8f26 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.package.json
index 8496c36670..d7d5bb8ebe 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-5/wagon-provider-api-1.0-alpha-5.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.wagon/wagon-provider-api@1.0-alpha-5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.json
index ff8171093e..c88b7061e9 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.package.json
index 86883bd526..5cf2cdd38e 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon-ssh/1.0-alpha-5/wagon-ssh-1.0-alpha-5.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.wagon/wagon-ssh@1.0-alpha-5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.json
index f1fd464ef7..0dbc10e27f 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.package.json b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.package.json
index 238375b619..373e91f579 100644
--- a/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.maven.wagon/wagon@1.0-alpha-6?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.json b/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.json
index b833cf14d1..48bc29f59c 100644
--- a/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.json
@@ -20,10 +20,12 @@
"organization_url": "http://mina.apace.org/",
"licenses": [
{
- "name": "Apache 2.0 License",
- "url": "http://www.apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Apache 2.0 License",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.package.json b/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.package.json
index e8d5b17b8b..e5013f2097 100644
--- a/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/mina/build/1.1.1/build-1.1.1.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_required_phrase_14.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_14.RULE",
- "matched_text": "- name: Apache 2.0 License"
+ "matched_text": "name: Apache 2.0 License"
},
{
"license_expression": "apache-2.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_25.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-e558e9f5-a5c0-457b-b186-0743f1690340"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache 2.0 License\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: Apache 2.0 License\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.mina/build@1.1.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.json b/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.json
index 8ba06341f0..fc26a62b7d 100644
--- a/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.package.json b/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.package.json
index 1c9c5319a7..aa9cbe90cb 100644
--- a/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/myfaces/maven/myfaces-master/1.0.5/myfaces-master-1.0.5.pom.package.json
@@ -309,7 +309,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -318,7 +318,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.myfaces.maven/myfaces-master@1.0.5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.json b/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.json
index 12929e0e8b..2c8b81f177 100644
--- a/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.json
+++ b/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.package.json b/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.package.json
index 66e4008152..0916fe8d45 100644
--- a/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.package.json
@@ -85,7 +85,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -94,7 +94,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.apache.velocity/velocity@1.5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.json
index 3971478632..33098a953f 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.package.json
index 802024975c..13fa9cbd99 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.5.4/aspectjrt-1.5.4.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjrt@1.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.json
index ff616047b2..b584fccbe3 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.package.json
index 9a724418d8..7737d22e58 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjrt/1.6.0/aspectjrt-1.6.0.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjrt@1.6.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.json
index 8dc4928fe8..93cf6e2933 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.package.json
index 838965f89e..90f5a3e26d 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.5.4/aspectjtools-1.5.4.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjtools@1.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.json
index 4f12887817..230e618ae0 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.package.json
index a571f55cdf..44fbbbdc82 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjtools/1.6.0/aspectjtools-1.6.0.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjtools@1.6.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.json
index fcb8f20e9f..cadd08b641 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.package.json
index 4ce2eef682..3e1bfc5921 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.5.4/aspectjweaver-1.5.4.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjweaver@1.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.json b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.json
index 7ae409f95f..3ac76f7dff 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.package.json b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.package.json
index 6b3568b2d2..b5ee19600a 100644
--- a/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/aspectj/aspectjweaver/1.6.0/aspectjweaver-1.6.0.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.aspectj/aspectjweaver@1.6.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.json
index 9c67d83e8d..033dee4888 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The MIT License",
- "url": "LICENSE.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The MIT License",
+ "url": "LICENSE.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.package.json
index 5bc9ccc6e0..117b376803 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/aspectj-maven-plugin/1.0/aspectj-maven-plugin-1.0.pom.package.json
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_27.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE",
- "matched_text": "- name: The MIT License"
+ "matched_text": "name: The MIT License"
}
],
"identifier": "mit-3ab5a1cd-6f73-3105-a815-d0d7c55b1922"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The MIT License\n url: LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The MIT License\n url: LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/aspectj-maven-plugin@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.json
index f0f98fc952..bbe6c85642 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The MIT License",
- "url": "http://www.opensource.org/licenses/mit-license.php",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The MIT License",
+ "url": "http://www.opensource.org/licenses/mit-license.php",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.package.json
index 224134b2e0..4a561c2ad8 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-20080813.143116-6.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_27.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE",
- "matched_text": "- name: The MIT License"
+ "matched_text": "name: The MIT License"
},
{
"license_expression": "mit",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_237.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_237.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/mit-license.php"
+ "matched_text": "url: http://www.opensource.org/licenses/mit-license.php"
}
],
"identifier": "mit-b25fa533-c536-1062-9012-a925b16f3d93"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The MIT License\n url: http://www.opensource.org/licenses/mit-license.php\n",
+ "extracted_license_statement": "- license:\n name: The MIT License\n url: http://www.opensource.org/licenses/mit-license.php\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/build-helper-maven-plugin@1.2-SNAPSHOT?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.json
index f0f98fc952..bbe6c85642 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The MIT License",
- "url": "http://www.opensource.org/licenses/mit-license.php",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The MIT License",
+ "url": "http://www.opensource.org/licenses/mit-license.php",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.package.json
index 224134b2e0..4a561c2ad8 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/build-helper-maven-plugin/1.2-SNAPSHOT/build-helper-maven-plugin-1.2-SNAPSHOT.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_27.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE",
- "matched_text": "- name: The MIT License"
+ "matched_text": "name: The MIT License"
},
{
"license_expression": "mit",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_237.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_237.RULE",
- "matched_text": " url: http://www.opensource.org/licenses/mit-license.php"
+ "matched_text": "url: http://www.opensource.org/licenses/mit-license.php"
}
],
"identifier": "mit-b25fa533-c536-1062-9012-a925b16f3d93"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The MIT License\n url: http://www.opensource.org/licenses/mit-license.php\n",
+ "extracted_license_statement": "- license:\n name: The MIT License\n url: http://www.opensource.org/licenses/mit-license.php\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/build-helper-maven-plugin@1.2-SNAPSHOT?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.json
index 9c27e40385..c8671cc9f5 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.package.json
index 8fe034b281..81c45dd44a 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/cobertura-maven-plugin/2.2/cobertura-maven-plugin-2.2.pom.package.json
@@ -64,7 +64,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -73,7 +73,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/cobertura-maven-plugin@2.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.json
index b466397a57..c09aa3388e 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.json
@@ -20,10 +20,12 @@
"organization_url": "http://www.codehaus.org",
"licenses": [
{
- "name": "MIT",
- "url": "LICENSE.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "MIT",
+ "url": "LICENSE.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
index 3ea524fdc2..3c37cf22c8 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1160.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
+ "matched_text": "license name: MIT"
}
],
"identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: MIT\n url: LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.json b/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.json
index d90e53f3c2..6d73bc1562 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The MIT License",
- "url": "http://commons.ucalgary.ca/projects/licenses/mit-license.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The MIT License",
+ "url": "http://commons.ucalgary.ca/projects/licenses/mit-license.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.package.json
index cf8605d37d..adc59277e5 100644
--- a/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/mojo/maven-buildnumber-plugin/0.9.6/maven-buildnumber-plugin-0.9.6.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_27.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE",
- "matched_text": "- name: The MIT License"
+ "matched_text": "name: The MIT License"
},
{
"license_expression": "mit",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_31.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_31.RULE",
- "matched_text": " url: http://commons.ucalgary.ca/projects/licenses/mit-license.txt"
+ "matched_text": "url: http://commons.ucalgary.ca/projects/licenses/mit-license.txt"
}
],
"identifier": "mit-6606d262-a141-3e1e-c957-d75733f3c324"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The MIT License\n url: http://commons.ucalgary.ca/projects/licenses/mit-license.txt\n",
+ "extracted_license_statement": "- license:\n name: The MIT License\n url: http://commons.ucalgary.ca/projects/licenses/mit-license.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/maven-buildnumber-plugin@0.9.6?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.json b/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.json
index 77e52d214b..0d85077cde 100644
--- a/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.json
+++ b/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.codehaus.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.package.json b/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.package.json
index a4fbc2781a..0c5578d766 100644
--- a/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.package.json
+++ b/tests/packagedcode/data/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.package.json
@@ -176,7 +176,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -185,7 +185,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.plexus/plexus@1.0.11?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.json b/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.json
index 2f2898d6e7..ba98df3f2b 100644
--- a/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.json
+++ b/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "MIT License",
- "url": "http://www.easymock.org/License.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "MIT License",
+ "url": "http://www.easymock.org/License.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.package.json b/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.package.json
index c9f416badd..43fcf0f4a0 100644
--- a/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/easymock/easymock/2.3/easymock-2.3.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1106.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
- "matched_text": "- name: MIT License"
+ "matched_text": "name: MIT License"
}
],
"identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MIT License\n url: http://www.easymock.org/License.html\n",
+ "extracted_license_statement": "- license:\n name: MIT License\n url: http://www.easymock.org/License.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.easymock/easymock@2.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.json b/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.json
index 1d562a7dc9..ff529ffbdc 100644
--- a/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.json
+++ b/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "MIT License",
- "url": "http://www.easymock.org/License.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "MIT License",
+ "url": "http://www.easymock.org/License.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.package.json b/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.package.json
index 2d718d1594..3272692087 100644
--- a/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/easymock/easymockclassextension/2.3/easymockclassextension-2.3.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1106.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
- "matched_text": "- name: MIT License"
+ "matched_text": "name: MIT License"
}
],
"identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MIT License\n url: http://www.easymock.org/License.html\n",
+ "extracted_license_statement": "- license:\n name: MIT License\n url: http://www.easymock.org/License.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.easymock/easymockclassextension@2.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.json
index 437fa1349e..a5884d5ebb 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.package.json
index 5563679e6e..47bb7a86d2 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate-annotations@3.2.1.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.json
index 87c737e049..95aac47680 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.package.json
index 51b77ce2a2..da5e8acc17 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-annotations/3.3.1.GA/hibernate-annotations-3.3.1.GA.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate-annotations@3.3.1.GA?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.json
index 1f74079dbc..bdb85bb2fb 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.package.json
index e94d469269..6fc4e77170 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-commons-annotations/3.0.0.ga/hibernate-commons-annotations-3.0.0.ga.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate-commons-annotations@3.0.0.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.json
index d7f4d7b5ec..158a9523e3 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.package.json
index cc2ca7460b..b568e17ca8 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.2.1.ga/hibernate-entitymanager-3.2.1.ga.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate-entitymanager@3.2.1.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.json
index 95fd6ff8fa..c5ed0866f5 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.package.json
index 5f0d144b9f..52b74c9a0d 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate-entitymanager/3.3.2.GA/hibernate-entitymanager-3.3.2.GA.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.GA?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.json
index b77a65d5e6..3ee4abe5b4 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.jboss.com",
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.package.json
index 6e118c037b..7e4ba32985 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.1.ga/hibernate-3.2.1.ga.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate@3.2.1.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.json b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.json
index d003ae648b..9bd4930d69 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.jboss.com",
"licenses": [
{
- "name": "GNU LESSER GENERAL PUBLIC LICENSE",
- "url": "http://www.gnu.org/licenses/lgpl.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU LESSER GENERAL PUBLIC LICENSE",
+ "url": "http://www.gnu.org/licenses/lgpl.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.package.json b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.package.json
index d435dfb78b..fbd93ec21c 100644
--- a/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.package.json
+++ b/tests/packagedcode/data/m2/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_478.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE",
- "matched_text": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt"
+ "matched_text": "name: GNU LESSER GENERAL PUBLIC LICENSE\nurl: http://www.gnu.org/licenses/lgpl.txt"
}
],
"identifier": "lgpl_2_1_plus-5b207c2e-c8de-cf22-f50f-7f09e337559a"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
+ "extracted_license_statement": "- license:\n name: GNU LESSER GENERAL PUBLIC LICENSE\n url: http://www.gnu.org/licenses/lgpl.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.hibernate/hibernate@3.2.6.ga?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.json b/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.json
index 706eea72b2..600d257e06 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.mortbay.com",
"licenses": [
{
- "name": "Apache License Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Apache License Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.package.json b/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.package.json
index c3a89d8246..c4861487c2 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.package.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.package.json
@@ -127,7 +127,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_48.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE",
- "matched_text": "- name: Apache License Version 2.0"
+ "matched_text": "name: Apache License Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -142,7 +142,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_25.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-7d19d6db-5271-9183-f2fe-699732078833"
@@ -151,7 +151,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: Apache License Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.mortbay.jetty/jetty-parent@7?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.json b/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.json
index 0bc2be5b00..639ae90395 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.mortbay.com",
"licenses": [
{
- "name": "Apache License Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Apache License Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.package.json b/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.package.json
index 67578678f6..a320e12821 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/project/6.1.5/project-6.1.5.pom.package.json
@@ -106,7 +106,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_48.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE",
- "matched_text": "- name: Apache License Version 2.0"
+ "matched_text": "name: Apache License Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -121,7 +121,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_25.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25.RULE",
- "matched_text": " url: http://www.apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://www.apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-7d19d6db-5271-9183-f2fe-699732078833"
@@ -130,7 +130,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: Apache License Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.mortbay.jetty/project@6.1.5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.json b/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.json
index c72ee8009d..8957d95004 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "CDDL 1.0",
- "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "CDDL 1.0",
+ "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.package.json b/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.package.json
index 333660728f..472daf23d1 100644
--- a/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.package.json
+++ b/tests/packagedcode/data/m2/org/mortbay/jetty/servlet-api-2.5/6.1.5/servlet-api-2.5-6.1.5.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 95,
"rule_identifier": "spdx_license_id_cddl-1.0_for_cddl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE",
- "matched_text": "- name: CDDL 1.0"
+ "matched_text": "name: CDDL 1.0"
},
{
"license_expression": "cddl-1.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "cddl-1.0_6.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_6.RULE",
- "matched_text": " url: https://glassfish.dev.java.net/public/CDDLv1.0.html"
+ "matched_text": "url: https://glassfish.dev.java.net/public/CDDLv1.0.html"
}
],
"identifier": "cddl_1_0-b43283bb-7484-67cf-7811-6578562b5d66"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: CDDL 1.0\n url: https://glassfish.dev.java.net/public/CDDLv1.0.html\n",
+ "extracted_license_statement": "- license:\n name: CDDL 1.0\n url: https://glassfish.dev.java.net/public/CDDLv1.0.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.mortbay.jetty/servlet-api-2.5@6.1.5?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.json
index b76d8b3dc1..90ad3ad1a2 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.package.json
index e61fb3acaa..a3e49841a1 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aop/2.5.3/spring-aop-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-aop@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.json
index b5c00fed50..e2f41fd3be 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.package.json
index 093fe5dc52..bd29e7d07a 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.3/spring-aspects-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-aspects@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.json
index 123459b5a1..c0d3a78df5 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.package.json
index 374e6eaddc..e4e474a485 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-aspects/2.5.4/spring-aspects-2.5.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-aspects@2.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.json
index a086ada977..529f94fd54 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.package.json
index b75908ccc0..349049f3d3 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-beans/2.5.3/spring-beans-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-beans@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.json
index ff2a3fbfb2..9fb4ad7d50 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.package.json
index 431cf4c737..09f5dc50f2 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-context-support/2.5.3/spring-context-support-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-context-support@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.json
index 5c87c59fb7..690097415c 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.package.json
index 11dd344367..82065c05de 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-context/2.5.3/spring-context-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-context@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.json
index 6745704409..29aa26e5f9 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.package.json
index 4ba483dbe4..dba84a1ae1 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-core/2.5.3/spring-core-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-core@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.json
index 7fb3f015ae..b66e02bd42 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.package.json
index 27013bde37..763ecb9ae7 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-jdbc/2.5.3/spring-jdbc-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-jdbc@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.json
index 924f4485cc..0a08c4a6fa 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.package.json
index c7a973a796..cdbffd0d75 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.json
index 3aa0f269d7..3bf3627d77 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.package.json
index 2cc4056567..82e2d3aa55 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.3/spring-test-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-test@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.json
index 485cae4b90..39697cf95f 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.package.json
index 449c1ce222..6fd05725a1 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-test/2.5.4/spring-test-2.5.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-test@2.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.json
index 3b1292b019..3ff4c5a644 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.package.json
index 4e604670fe..bd8f5e9e00 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-tx/2.5.3/spring-tx-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-tx@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.json
index 3614c69850..8cc12c95e2 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.package.json
index e94dc61e2f..9f9a8bc533 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-web/2.5.3/spring-web-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-web@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.json
index b836ade63d..1da2f6c03c 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.package.json
index f13d04df58..cb5c2efaa6 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.json b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.json
index e3243c11a7..1662826085 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.package.json
index 2ff5e7832a..df8203f838 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring-webmvc/2.5.4/spring-webmvc-2.5.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-webmvc@2.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.json b/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.json
index e9d5c55ba0..7e8103c79c 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.package.json b/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.package.json
index 5b4c97a97b..ad56f7b449 100644
--- a/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.package.json
+++ b/tests/packagedcode/data/m2/org/springframework/spring/2.5.4/spring-2.5.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.json b/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.json
index 838130cd0f..19f68041f8 100644
--- a/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.json
+++ b/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Apache License, Version 2.0",
- "url": "http://apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Apache License, Version 2.0",
+ "url": "http://apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.package.json b/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.package.json
index e76f47cfd0..3f61fc706e 100644
--- a/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.package.json
+++ b/tests/packagedcode/data/m2/org/testng/testng/5.7/testng-5.7.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_48.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE",
- "matched_text": "- name: Apache License, Version 2.0"
+ "matched_text": "name: Apache License, Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_url_6.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_url_6.RULE",
- "matched_text": " url: http://apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-2614ce7e-e1ad-7f48-a806-858afc92366a"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, Version 2.0\n url: http://apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: Apache License, Version 2.0\n url: http://apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.testng/testng@5.7?classifier=sources"
diff --git a/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.json b/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.json
index 7e45f8b5a6..343b6b4c34 100644
--- a/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.json
+++ b/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Apache License, Version 2.0",
- "url": "http://apache.org/licenses/LICENSE-2.0",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Apache License, Version 2.0",
+ "url": "http://apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.package.json b/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.package.json
index 3f1aa3b346..e6a6d54481 100644
--- a/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.package.json
+++ b/tests/packagedcode/data/m2/org/testng/testng/5.8/testng-5.8.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_48.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE",
- "matched_text": "- name: Apache License, Version 2.0"
+ "matched_text": "name: Apache License, Version 2.0"
},
{
"license_expression": "apache-2.0",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_url_6.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_url_6.RULE",
- "matched_text": " url: http://apache.org/licenses/LICENSE-2.0"
+ "matched_text": "url: http://apache.org/licenses/LICENSE-2.0"
}
],
"identifier": "apache_2_0-2614ce7e-e1ad-7f48-a806-858afc92366a"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, Version 2.0\n url: http://apache.org/licenses/LICENSE-2.0\n",
+ "extracted_license_statement": "- license:\n name: Apache License, Version 2.0\n url: http://apache.org/licenses/LICENSE-2.0\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.testng/testng@5.8?classifier=sources"
diff --git a/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.json b/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.json
index 66f67529c6..58a8df5233 100644
--- a/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.json
+++ b/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The P6Spy Software License, Version 1.1",
- "url": "http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The P6Spy Software License, Version 1.1",
+ "url": "http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.package.json b/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.package.json
index 7241acd126..6687582b1a 100644
--- a/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.package.json
+++ b/tests/packagedcode/data/m2/p6spy/p6spy/1.3/p6spy-1.3.pom.package.json
@@ -78,7 +78,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-1.1_66.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-1.1_66.RULE",
- "matched_text": "- name: The P6Spy Software License, Version 1.1"
+ "matched_text": "name: The P6Spy Software License, Version 1.1"
},
{
"license_expression": "apache-1.1",
@@ -93,7 +93,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-1.1_64.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-1.1_64.RULE",
- "matched_text": " url: http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD"
+ "matched_text": "url: http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD"
}
],
"identifier": "apache_1_1-899582d7-4b15-83f9-6aca-75519b44b4b4"
@@ -102,7 +102,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The P6Spy Software License, Version 1.1\n url: http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD\n",
+ "extracted_license_statement": "- license:\n name: The P6Spy Software License, Version 1.1\n url: http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD\n",
"notice_text": null,
"source_packages": [
"pkg:maven/p6spy/p6spy@1.3?classifier=sources"
diff --git a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.json b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.json
index 4a3ed40a7b..0c1c7c9254 100644
--- a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.json
+++ b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The 3-Clause BSD License",
- "url": "https://opensource.org/licenses/BSD-3-Clause",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The 3-Clause BSD License",
+ "url": "https://opensource.org/licenses/BSD-3-Clause",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.package.json b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.package.json
index 52dc353c61..56cdc329a6 100644
--- a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.package.json
+++ b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-2.17.0718b.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_358.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_358.RULE",
- "matched_text": "- name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause"
+ "matched_text": "name: The 3-Clause BSD License\nurl: https://opensource.org/licenses/BSD-3-Clause"
}
],
"identifier": "bsd_new-16562f16-7bf2-63a5-7b03-5327f109350b"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause\n",
+ "extracted_license_statement": "- license:\n name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause\n",
"notice_text": null,
"source_packages": [
"pkg:maven/io.github.subiyacryolite/jds@2.17.0718b?classifier=sources"
diff --git a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.json b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.json
index ea7f2c86f7..43c511b02e 100644
--- a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.json
+++ b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The 3-Clause BSD License",
- "url": "https://opensource.org/licenses/BSD-3-Clause",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The 3-Clause BSD License",
+ "url": "https://opensource.org/licenses/BSD-3-Clause",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.package.json b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.package.json
index fd53bfa9d3..19b5a1e45b 100644
--- a/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.package.json
+++ b/tests/packagedcode/data/m2/parsing_issues/parse_error/jds-3.0.1.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "bsd-new_358.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_358.RULE",
- "matched_text": "- name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause"
+ "matched_text": "name: The 3-Clause BSD License\nurl: https://opensource.org/licenses/BSD-3-Clause"
}
],
"identifier": "bsd_new-16562f16-7bf2-63a5-7b03-5327f109350b"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause\n",
+ "extracted_license_statement": "- license:\n name: The 3-Clause BSD License\n url: https://opensource.org/licenses/BSD-3-Clause\n",
"notice_text": null,
"source_packages": [
"pkg:maven/io.github.subiyacryolite/jds@3.0.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.json b/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.json
index 53802a26cd..87fb82cbc9 100644
--- a/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.json
+++ b/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.package.json b/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.package.json
index 59e98eb899..0b3be4a7d7 100644
--- a/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.package.json
+++ b/tests/packagedcode/data/m2/parsing_issues/was_empty/common-object-1.0.2.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.xson/common-object@1.0.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.json b/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.json
index 6dace5ea2d..0b12cfc4f2 100644
--- a/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.json
+++ b/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.package.json b/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.package.json
index 0ed0f67602..420819f446 100644
--- a/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.package.json
+++ b/tests/packagedcode/data/m2/parsing_issues/was_empty/osgl-http-1.1.2.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.osgl/osgl-http@1.1.2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.json b/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.json
index 6ac4cfe403..113b4840a9 100644
--- a/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.json
+++ b/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.package.json b/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.package.json
index 554d6d021d..31d2888026 100644
--- a/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.package.json
+++ b/tests/packagedcode/data/m2/validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.package.json
@@ -267,7 +267,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -276,7 +276,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
diff --git a/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.json b/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.json
index c9d07beb06..2831bc6620 100644
--- a/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.json
+++ b/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.package.json b/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.package.json
index 3c3eaad729..92a0f3ddc5 100644
--- a/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.package.json
+++ b/tests/packagedcode/data/m2/validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.package.json
@@ -274,7 +274,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -283,7 +283,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-validator/commons-validator@1.3.1?classifier=sources"
diff --git a/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.json b/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.json
index 61c8a86cfc..8139eb4e3b 100644
--- a/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.json
+++ b/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.package.json b/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.package.json
index 0d50db51f0..6904676a3f 100644
--- a/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.package.json
+++ b/tests/packagedcode/data/m2/velocity/velocity/1.4/velocity-1.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/velocity/velocity@1.4?classifier=sources"
diff --git a/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.json b/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.json
index 4af134d419..700bdc04ca 100644
--- a/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.json
+++ b/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.package.json b/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.package.json
index ed384f8e64..c315d4b988 100644
--- a/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.package.json
+++ b/tests/packagedcode/data/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/xml-apis/xml-apis@1.0.b2?classifier=sources"
diff --git a/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.json b/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.json
index 3b0bbb6380..28c012b2a4 100644
--- a/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.json
+++ b/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Public Domain",
- "url": "http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Public Domain",
+ "url": "http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.package.json b/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.package.json
index 12384c13e2..b1ae6ee16d 100644
--- a/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.package.json
+++ b/tests/packagedcode/data/m2/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 70,
"rule_identifier": "public-domain_bare_words.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
+ "matched_text": "name: Public Domain"
},
{
"license_expression": "sax-pd",
@@ -57,7 +57,7 @@
"rule_relevance": 100,
"rule_identifier": "sax-pd_url_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/sax-pd_url_4.RULE",
- "matched_text": " url: http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt"
+ "matched_text": "url: http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt"
}
],
"identifier": "public_domain_and_sax_pd-d771fe18-376a-f0df-b8c9-0c2a585fd653"
@@ -66,7 +66,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n url: http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: Public Domain\n url: http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/xmlpull/xmlpull@1.1.3.1?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.json b/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.json
index 64af87ff5a..1ec18d4c3a 100644
--- a/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.json
+++ b/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.json
@@ -14,16 +14,20 @@
"organization_url": null,
"licenses": [
{
- "name": "Public Domain",
- "url": null,
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Public Domain",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
},
{
- "name": "GPL",
- "url": "http://nexb.com",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GPL",
+ "url": "http://nexb.com",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.package.json b/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.package.json
index 872c223fb7..2b9687f862 100644
--- a/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.package.json
+++ b/tests/packagedcode/data/maven2/aopalliance-1.0/aopalliance-1.0.pom.package.json
@@ -26,8 +26,8 @@
"declared_license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
"license_detections": [
{
- "license_expression": "public-domain AND gpl-1.0-plus",
- "license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
+ "license_expression": "public-domain",
+ "license_expression_spdx": "LicenseRef-scancode-public-domain",
"matches": [
{
"license_expression": "public-domain",
@@ -42,14 +42,21 @@
"rule_relevance": 70,
"rule_identifier": "public-domain_bare_words.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
- },
+ "matched_text": "name: Public Domain"
+ }
+ ],
+ "identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77"
+ },
+ {
+ "license_expression": "gpl-1.0-plus",
+ "license_expression_spdx": "GPL-1.0-or-later",
+ "matches": [
{
"license_expression": "gpl-1.0-plus",
"license_expression_spdx": "GPL-1.0-or-later",
"from_file": null,
- "start_line": 2,
- "end_line": 2,
+ "start_line": 1,
+ "end_line": 1,
"matcher": "2-aho",
"score": 50.0,
"matched_length": 1,
@@ -57,16 +64,16 @@
"rule_relevance": 50,
"rule_identifier": "gpl_bare_word_only.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE",
- "matched_text": "- name: GPL"
+ "matched_text": "name: GPL"
}
],
- "identifier": "public_domain_and_gpl_1_0_plus-1122e82b-9e72-f9bb-082b-2717cb5076ed"
+ "identifier": "gpl_1_0_plus-473308ff-72ce-7e72-b3a9-5b1cc6680abb"
}
],
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n- name: GPL\n url: http://nexb.com\n",
+ "extracted_license_statement": "- license:\n name: Public Domain\n- license:\n name: GPL\n url: http://nexb.com\n",
"notice_text": null,
"source_packages": [
"pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.json b/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.json
index 6ac4cfe403..113b4840a9 100644
--- a/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.json
+++ b/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://jakarta.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "/LICENSE.txt",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "/LICENSE.txt",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json b/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json
index 554d6d021d..31d2888026 100644
--- a/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json
+++ b/tests/packagedcode/data/maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json
@@ -267,7 +267,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1321.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: /LICENSE.txt"
}
],
"identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
@@ -276,7 +276,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json b/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json
index b466397a57..c09aa3388e 100644
--- a/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json
+++ b/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json
@@ -20,10 +20,12 @@
"organization_url": "http://www.codehaus.org",
"licenses": [
{
- "name": "MIT",
- "url": "LICENSE.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "MIT",
+ "url": "LICENSE.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json b/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
index 3ea524fdc2..3c37cf22c8 100644
--- a/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
+++ b/tests/packagedcode/data/maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json
@@ -71,7 +71,7 @@
"rule_relevance": 100,
"rule_identifier": "mit_1160.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
+ "matched_text": "license name: MIT"
}
],
"identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
@@ -80,7 +80,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
+ "extracted_license_statement": "- license:\n name: MIT\n url: LICENSE.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.json b/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.json
index 5fe0732c40..0327fe3a52 100644
--- a/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.json
+++ b/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "Eclipse Public License - v 1.0",
- "url": "http://www.eclipse.org/legal/epl-v10.html",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "Eclipse Public License - v 1.0",
+ "url": "http://www.eclipse.org/legal/epl-v10.html",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.package.json b/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.package.json
index 2e560b64ca..4735203fa9 100644
--- a/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.package.json
+++ b/tests/packagedcode/data/maven2/foo-pom/foo-pom.xml.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0_4.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
+ "matched_text": "name: Eclipse Public License - v 1.0"
},
{
"license_expression": "epl-1.0",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "epl-1.0.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
+ "matched_text": "url: http://www.eclipse.org/legal/epl-v10.html"
}
],
"identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
+ "extracted_license_statement": "- license:\n name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json b/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json
index 1b57c2afa8..71024c34da 100644
--- a/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json
+++ b/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": null,
"licenses": [
{
- "name": "LGPL",
- "url": "http://www.gnu.org/copyleft/lesser.html",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "LGPL",
+ "url": "http://www.gnu.org/copyleft/lesser.html",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json b/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json
index 439676daf4..ed4c84fd9f 100644
--- a/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json
+++ b/tests/packagedcode/data/maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 60,
"rule_identifier": "lgpl_bare_single_word.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: LGPL"
+ "matched_text": "name: LGPL"
},
{
"license_expression": "lgpl-2.1-plus",
@@ -65,7 +65,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl_7.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_7.RULE",
- "matched_text": " url: http://www.gnu.org/copyleft/lesser.html"
+ "matched_text": "url: http://www.gnu.org/copyleft/lesser.html"
}
],
"identifier": "lgpl_2_0_plus_and_lgpl_2_1_plus-99bbf99a-48ea-24c4-e2df-f242abe6446f"
@@ -74,7 +74,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
+ "extracted_license_statement": "- license:\n name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.json b/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.json
index 46acc8d1e3..2ae85fc01a 100644
--- a/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.json
+++ b/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.apache.org",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.package.json b/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.package.json
index 536777e405..13718c04ff 100644
--- a/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.package.json
+++ b/tests/packagedcode/data/maven2/log4j/log4j-pom.xml.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/log4j/log4j@1.2.15?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/logback-access/logback-access.pom.json b/tests/packagedcode/data/maven2/logback-access/logback-access.pom.json
index 13661d09a8..40f805c912 100644
--- a/tests/packagedcode/data/maven2/logback-access/logback-access.pom.json
+++ b/tests/packagedcode/data/maven2/logback-access/logback-access.pom.json
@@ -20,10 +20,12 @@
"organization_url": null,
"licenses": [
{
- "name": "GNU Lesser General Public License",
- "url": "http://www.gnu.org/licenses/lgpl.html",
- "comments": null,
- "distribution": null
+ "license": {
+ "name": "GNU Lesser General Public License",
+ "url": "http://www.gnu.org/licenses/lgpl.html",
+ "comments": null,
+ "distribution": null
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/logback-access/logback-access.pom.package.json b/tests/packagedcode/data/maven2/logback-access/logback-access.pom.package.json
index c035d87f92..0af5707a05 100644
--- a/tests/packagedcode/data/maven2/logback-access/logback-access.pom.package.json
+++ b/tests/packagedcode/data/maven2/logback-access/logback-access.pom.package.json
@@ -42,7 +42,7 @@
"rule_relevance": 100,
"rule_identifier": "lgpl-2.1-plus_516.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
- "matched_text": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html"
+ "matched_text": "name: GNU Lesser General Public License\nurl: http://www.gnu.org/licenses/lgpl.html"
}
],
"identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
@@ -51,7 +51,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
+ "extracted_license_statement": "- license:\n name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
"notice_text": null,
"source_packages": [
"pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml
new file mode 100644
index 0000000000..302d624229
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml
@@ -0,0 +1,19 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ LGPL
+ repo
+
+
+ GNU Lesser General Public License
+ http://www.gnu.org/licenses/lgpl.html
+ repo
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.json
new file mode 100644
index 0000000000..53026835d8
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL",
+ "url": null,
+ "comments": null,
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "GNU Lesser General Public License",
+ "url": "http://www.gnu.org/licenses/lgpl.html",
+ "comments": null,
+ "distribution": "repo"
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.package.json
new file mode 100644
index 0000000000..4cc1632f57
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name___name_url_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
+ "declared_license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
+ "license_detections": [
+ {
+ "license_expression": "lgpl-2.0-plus",
+ "license_expression_spdx": "LGPL-2.0-or-later",
+ "matches": [
+ {
+ "license_expression": "lgpl-2.0-plus",
+ "license_expression_spdx": "LGPL-2.0-or-later",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 60.0,
+ "matched_length": 1,
+ "match_coverage": 100.0,
+ "rule_relevance": 60,
+ "rule_identifier": "lgpl_bare_single_word.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
+ "matched_text": "name: LGPL"
+ }
+ ],
+ "identifier": "lgpl_2_0_plus-e66c5b24-33ce-ea1b-0e3b-28952361ec32"
+ },
+ {
+ "license_expression": "lgpl-2.1-plus",
+ "license_expression_spdx": "LGPL-2.1-or-later",
+ "matches": [
+ {
+ "license_expression": "lgpl-2.1-plus",
+ "license_expression_spdx": "LGPL-2.1-or-later",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 2,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 14,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "lgpl-2.1-plus_516.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
+ "matched_text": "name: GNU Lesser General Public License\nurl: http://www.gnu.org/licenses/lgpl.html"
+ }
+ ],
+ "identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: LGPL\n- license:\n name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml
new file mode 100644
index 0000000000..56c45339dd
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml
@@ -0,0 +1,16 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ Apache-2.0
+
+
+ MIT
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.json
new file mode 100644
index 0000000000..caa7a5bc95
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "Apache-2.0",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ },
+ {
+ "license": {
+ "name": "MIT",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.package.json
new file mode 100644
index 0000000000..ad7556667c
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_2_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE",
+ "matched_text": "name: Apache-2.0"
+ }
+ ],
+ "identifier": "apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1160.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
+ "matched_text": "license name: MIT"
+ }
+ ],
+ "identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: Apache-2.0\n- license:\n name: MIT\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml
new file mode 100644
index 0000000000..6f564796c6
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml
@@ -0,0 +1,16 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.json
new file mode 100644
index 0000000000..5787a64a77
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.package.json
new file mode 100644
index 0000000000..d0a1d5b818
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name__name_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_1316.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1316.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "apache_2_0-c3b9cbd8-09fc-8aa5-f48b-917b9001c088"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml
new file mode 100644
index 0000000000..7725d83172
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml
@@ -0,0 +1,18 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ https://www.apache.org/licenses/LICENSE-2.0
+ repo
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.json
new file mode 100644
index 0000000000..7646772c36
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "https://www.apache.org/licenses/LICENSE-2.0",
+ "comments": null,
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.package.json
new file mode 100644
index 0000000000..ff2ba2f1d2
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url__name_pom.xml.package.json
@@ -0,0 +1,106 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_1316.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1316.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 2,
+ "end_line": 2,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_url_1.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_url_1.RULE",
+ "matched_text": "url: https://www.apache.org/licenses/LICENSE-2.0"
+ }
+ ],
+ "identifier": "apache_2_0-eaf0787e-8a62-2d33-cfd3-318480170f56"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: https://www.apache.org/licenses/LICENSE-2.0\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml
new file mode 100644
index 0000000000..ba5ba93592
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml
@@ -0,0 +1,19 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ https://www.apache.org/licenses/LICENSE-2.0
+ repo
+ Apache Software License, Version 2.0
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.json
new file mode 100644
index 0000000000..49e63b3b88
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "https://www.apache.org/licenses/LICENSE-2.0",
+ "comments": "Apache Software License, Version 2.0",
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.package.json
new file mode 100644
index 0000000000..742903caaf
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_url_comment__name_pom.xml.package.json
@@ -0,0 +1,121 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_1316.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1316.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 2,
+ "end_line": 2,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_url_1.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_url_1.RULE",
+ "matched_text": "url: https://www.apache.org/licenses/LICENSE-2.0"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 3,
+ "end_line": 3,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_220.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_220.RULE",
+ "matched_text": "comments: Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "apache_2_0-a77a5663-7cfe-1360-bd28-8444e5f41a19"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: https://www.apache.org/licenses/LICENSE-2.0\n comments: Apache Software License, Version 2.0\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml
new file mode 100644
index 0000000000..a8237243cc
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml
@@ -0,0 +1,19 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ https://foo.com/licenses/bar
+ repo
+
+
+ MIT License
+
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.json
new file mode 100644
index 0000000000..8f41a3a939
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "https://foo.com/licenses/bar",
+ "comments": null,
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.package.json
new file mode 100644
index 0000000000..3bd0a97d17
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu__name_pom.xml.package.json
@@ -0,0 +1,113 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND unknown AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND LicenseRef-scancode-unknown AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 2,
+ "matcher": "3-seq",
+ "score": 61.11,
+ "matched_length": 11,
+ "match_coverage": 61.11,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_884.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_884.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: https://foo.com/licenses/bar"
+ }
+ ],
+ "identifier": "apache_2_0-4617e2a8-0fea-0dd5-44f5-72acecb52f72"
+ },
+ {
+ "license_expression": "unknown",
+ "license_expression_spdx": "LicenseRef-scancode-unknown",
+ "matches": [
+ {
+ "license_expression": "unknown",
+ "license_expression_spdx": "LicenseRef-scancode-unknown",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 2,
+ "matcher": "5-undetected",
+ "score": 100.0,
+ "matched_length": 15,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "package-manifest-unknown-3d3a78a49ea1a2aed42d20c5031b353f719aeacf",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-3d3a78a49ea1a2aed42d20c5031b353f719aeacf",
+ "matched_text": "license name: The Apache Software License, Version 2.0\nurl: https://foo.com/licenses/bar"
+ }
+ ],
+ "identifier": "unknown-1b453053-43f2-6702-a8aa-0f4ba3eb8820"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: https://foo.com/licenses/bar\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml
new file mode 100644
index 0000000000..b2d05fd5f1
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml
@@ -0,0 +1,19 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ https://foo.com/licenses/bar
+ repo
+ Apache Software License, Version 2.0
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.json
new file mode 100644
index 0000000000..f5f6984edd
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "https://foo.com/licenses/bar",
+ "comments": "Apache Software License, Version 2.0",
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.package.json
new file mode 100644
index 0000000000..b259eda485
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_comment__name_pom.xml.package.json
@@ -0,0 +1,128 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND unknown AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND LicenseRef-scancode-unknown AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 3,
+ "matcher": "3-seq",
+ "score": 66.67,
+ "matched_length": 12,
+ "match_coverage": 66.67,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_884.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_884.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: https://foo.com/licenses/bar\ncomments: Apache Software License, Version 2.0"
+ },
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 3,
+ "end_line": 3,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_220.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_220.RULE",
+ "matched_text": "comments: Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "apache_2_0-fb2ea772-c315-0e1d-32cc-dbc77dfd3fae"
+ },
+ {
+ "license_expression": "unknown",
+ "license_expression_spdx": "LicenseRef-scancode-unknown",
+ "matches": [
+ {
+ "license_expression": "unknown",
+ "license_expression_spdx": "LicenseRef-scancode-unknown",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 3,
+ "matcher": "5-undetected",
+ "score": 100.0,
+ "matched_length": 22,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "package-manifest-unknown-209282cf34535ab6753673d3fb19628763414787",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-209282cf34535ab6753673d3fb19628763414787",
+ "matched_text": "license name: The Apache Software License, Version 2.0\nurl: https://foo.com/licenses/bar\ncomments: Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "unknown-9d69fb1d-72e2-5bb6-5962-93a1a68ea580"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: https://foo.com/licenses/bar\n comments: Apache Software License, Version 2.0\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml
new file mode 100644
index 0000000000..e885d93c9f
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml
@@ -0,0 +1,19 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ some unknown URL
+ repo
+ some unknown thing
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.json
new file mode 100644
index 0000000000..6aba30857c
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "some unknown URL",
+ "comments": "some unknown thing",
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.package.json
new file mode 100644
index 0000000000..291e8859f4
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urlu_commentu__name_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 8,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_1316.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1316.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "apache_2_0-c3b9cbd8-09fc-8aa5-f48b-917b9001c088"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: some unknown URL\n comments: some unknown thing\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml
new file mode 100644
index 0000000000..ae52cc865e
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml
@@ -0,0 +1,20 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ The Apache Software License, Version 2.0
+ LICENSE.txt
+ repo
+
+
+ MIT License
+
+
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.json
new file mode 100644
index 0000000000..a67d57a6e3
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "LICENSE.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.package.json
new file mode 100644
index 0000000000..1d7231cc64
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/name_urluref__name_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 2,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 11,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_1321.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: LICENSE.txt"
+ }
+ ],
+ "identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: LICENSE.txt\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml
new file mode 100644
index 0000000000..b6130df618
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml
@@ -0,0 +1,18 @@
+
+
+ 4.0.0
+
+ net.bytebuddy
+ byte-buddy-parent
+ 1.7.1-SNAPSHOT
+
+
+ Foo BAR
+ The Apache Software License, Version 2.0
+ repo
+
+
+ MIT License
+
+
+
diff --git a/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.json b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.json
new file mode 100644
index 0000000000..0b6d66a13d
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.json
@@ -0,0 +1,44 @@
+{
+ "model_version": "4.0.0",
+ "group_id": "net.bytebuddy",
+ "artifact_id": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "classifier": null,
+ "packaging": "jar",
+ "parent": {},
+ "name": null,
+ "description": null,
+ "inception_year": null,
+ "url": null,
+ "organization_name": null,
+ "organization_url": null,
+ "licenses": [
+ {
+ "license": {
+ "name": "Foo BAR",
+ "url": "The Apache Software License, Version 2.0",
+ "comments": null,
+ "distribution": "repo"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT License",
+ "url": null,
+ "comments": null,
+ "distribution": null
+ }
+ }
+ ],
+ "developers": [],
+ "contributors": [],
+ "modules": [],
+ "mailing_lists": [],
+ "scm": {},
+ "issue_management": {},
+ "ci_management": {},
+ "distribution_management": {},
+ "repositories": [],
+ "plugin_repositories": [],
+ "dependencies": {}
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.package.json b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.package.json
new file mode 100644
index 0000000000..52973a109c
--- /dev/null
+++ b/tests/packagedcode/data/maven2/pom-licenses/nameu_url__name_pom.xml.package.json
@@ -0,0 +1,91 @@
+{
+ "type": "maven",
+ "namespace": "net.bytebuddy",
+ "name": "byte-buddy-parent",
+ "version": "1.7.1-SNAPSHOT",
+ "qualifiers": {},
+ "subpath": null,
+ "primary_language": "Java",
+ "description": null,
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "apache-2.0 AND mit",
+ "declared_license_expression_spdx": "Apache-2.0 AND MIT",
+ "license_detections": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "matches": [
+ {
+ "license_expression": "apache-2.0",
+ "license_expression_spdx": "Apache-2.0",
+ "from_file": null,
+ "start_line": 2,
+ "end_line": 2,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 7,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "apache-2.0_5.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_5.RULE",
+ "matched_text": "url: The Apache Software License, Version 2.0"
+ }
+ ],
+ "identifier": "apache_2_0-daaaee76-1395-c8c8-e06a-3f3f76e079b1"
+ },
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "matches": [
+ {
+ "license_expression": "mit",
+ "license_expression_spdx": "MIT",
+ "from_file": null,
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "1-hash",
+ "score": 100.0,
+ "matched_length": 3,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "mit_1106.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1106.RULE",
+ "matched_text": "name: MIT License"
+ }
+ ],
+ "identifier": "mit-8b394b05-a8d3-7669-2b85-8e2313a00b22"
+ }
+ ],
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: Foo BAR\n url: The Apache Software License, Version 2.0\n- license:\n name: MIT License\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT?classifier=sources"
+ ],
+ "file_references": [],
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "dependencies": [],
+ "repository_homepage_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/net/bytebuddy/byte-buddy-parent/1.7.1-SNAPSHOT/byte-buddy-parent-1.7.1-SNAPSHOT.pom",
+ "datasource_id": "maven_pom",
+ "purl": "pkg:maven/net.bytebuddy/byte-buddy-parent@1.7.1-SNAPSHOT"
+}
\ No newline at end of file
diff --git a/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.json b/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.json
index e9d5c55ba0..7e8103c79c 100644
--- a/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.json
+++ b/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.package.json b/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.package.json
index 5b4c97a97b..ad56f7b449 100644
--- a/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.package.json
+++ b/tests/packagedcode/data/maven2/spring-2.5.4/spring-2.5.4.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.json b/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.json
index 924f4485cc..0a08c4a6fa 100644
--- a/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.json
+++ b/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json b/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json
index c7a973a796..cdbffd0d75 100644
--- a/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json b/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json
index b836ade63d..1da2f6c03c 100644
--- a/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json
+++ b/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json
@@ -14,10 +14,12 @@
"organization_url": "http://www.springframework.org/",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [],
diff --git a/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json b/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json
index f13d04df58..cb5c2efaa6 100644
--- a/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json
+++ b/tests/packagedcode/data/maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json
@@ -50,7 +50,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_40.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: The Apache Software License, Version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
@@ -59,7 +59,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
diff --git a/tests/packagedcode/data/maven_misc/assemble/numbers-1.7.4-expected.json b/tests/packagedcode/data/maven_misc/assemble/numbers-1.7.4-expected.json
index 4c02451a05..cf3b4e7366 100644
--- a/tests/packagedcode/data/maven_misc/assemble/numbers-1.7.4-expected.json
+++ b/tests/packagedcode/data/maven_misc/assemble/numbers-1.7.4-expected.json
@@ -59,7 +59,7 @@
"rule_relevance": 100,
"rule_identifier": "cc0-1.0_203.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc0-1.0_203.RULE",
- "matched_text": "- name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/"
+ "matched_text": "name: CC0 Universal\nurl: http://www.creativecommons.org/publicdomain/zero/1.0/"
}
],
"identifier": "cc0_1_0-6bdf45cc-fe1e-2f20-02e3-fbae31f10c0e"
@@ -68,7 +68,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/\n",
+ "extracted_license_statement": "- license:\n name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.github.peteroupc/numbers@1.7.4?classifier=sources"
@@ -406,7 +406,7 @@
"rule_relevance": 100,
"rule_identifier": "cc0-1.0_203.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc0-1.0_203.RULE",
- "matched_text": "- name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/"
+ "matched_text": "name: CC0 Universal\nurl: http://www.creativecommons.org/publicdomain/zero/1.0/"
}
],
"identifier": "cc0_1_0-6bdf45cc-fe1e-2f20-02e3-fbae31f10c0e"
@@ -415,7 +415,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/\n",
+ "extracted_license_statement": "- license:\n name: CC0 Universal\n url: http://www.creativecommons.org/publicdomain/zero/1.0/\n",
"notice_text": null,
"source_packages": [
"pkg:maven/com.github.peteroupc/numbers@1.7.4?classifier=sources"
diff --git a/tests/packagedcode/data/maven_misc/spring-beans-4.2.2.RELEASE.pom.xml.json b/tests/packagedcode/data/maven_misc/spring-beans-4.2.2.RELEASE.pom.xml.json
index 608729bfae..3e7827c8b1 100644
--- a/tests/packagedcode/data/maven_misc/spring-beans-4.2.2.RELEASE.pom.xml.json
+++ b/tests/packagedcode/data/maven_misc/spring-beans-4.2.2.RELEASE.pom.xml.json
@@ -14,10 +14,12 @@
"organization_url": "http://projects.spring.io/spring-framework",
"licenses": [
{
- "name": "The Apache Software License, Version 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
- "comments": null,
- "distribution": "repo"
+ "license": {
+ "name": "The Apache Software License, Version 2.0",
+ "url": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "comments": null,
+ "distribution": "repo"
+ }
}
],
"developers": [
diff --git a/tests/packagedcode/data/plugin/maven-package-expected.json b/tests/packagedcode/data/plugin/maven-package-expected.json
index e9e8e15a9c..3cd30f6fa1 100644
--- a/tests/packagedcode/data/plugin/maven-package-expected.json
+++ b/tests/packagedcode/data/plugin/maven-package-expected.json
@@ -2,12766 +2,124 @@
"packages": [
{
"type": "maven",
- "namespace": "org.apache.activemq",
- "name": "activemq-camel",
- "version": "5.4.2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ActiveMQ :: Camel\nActiveMQ component for Camel",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.pom",
- "package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "activemq-camel/activemq-camel-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2"
- },
- {
- "type": "maven",
- "namespace": "adarwin",
- "name": "adarwin",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/adarwin/adarwin@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.pom",
- "package_uid": "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "adarwin-1.0/adarwin-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/adarwin/adarwin@1.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jai",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "image task and corresponding types.\n jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided\n the download URL is http://java.sun.com/products/java-media/jai/",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.pom",
- "package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "ant-jai-1.7.0/ant-jai-1.7.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.ant/ant-jai@1.7.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jsch",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "contains the sshexec and scp tasks\n jsch 0.1.29 might not be available from maven",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.pom",
- "package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "ant-jsch-1.7.0/ant-jsch-1.7.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.ant/ant-jsch@1.7.0"
- },
- {
- "type": "maven",
- "namespace": "aopalliance",
- "name": "aopalliance",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "AOP alliance\nAOP Alliance",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://aopalliance.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": "public-domain AND gpl-1.0-plus",
- "declared_license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "license_detections": [
- {
- "license_expression": "public-domain AND gpl-1.0-plus",
- "license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "matches": [
- {
- "license_expression": "public-domain",
- "license_expression_spdx": "LicenseRef-scancode-public-domain",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 70.0,
- "matched_length": 2,
- "match_coverage": 100.0,
- "rule_relevance": 70,
- "rule_identifier": "public-domain_bare_words.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
- },
- {
- "license_expression": "gpl-1.0-plus",
- "license_expression_spdx": "GPL-1.0-or-later",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 50.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 50,
- "rule_identifier": "gpl_bare_word_only.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE",
- "matched_text": "- name: GPL"
- }
- ],
- "identifier": "public_domain_and_gpl_1_0_plus-1122e82b-9e72-f9bb-082b-2717cb5076ed"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n- name: GPL\n url: http://nexb.com\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom",
- "package_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "aopalliance-1.0/aopalliance-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/aopalliance/aopalliance@1.0"
- },
- {
- "type": "maven",
- "namespace": "bcel",
- "name": "bcel",
- "version": "5.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/bcel/bcel@5.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.pom",
- "package_uid": "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "bcel-5.1/bcel-5.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/bcel/bcel@5.1"
- },
- {
- "type": "maven",
- "namespace": "classworlds",
- "name": "classworlds",
- "version": "1.1-alpha-2",
+ "namespace": "org.apache.geronimo.bundles",
+ "name": "axis",
+ "version": "1.4_1-SNAPSHOT",
"qualifiers": {},
"subpath": null,
- "primary_language": "Java",
- "description": "classworlds",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "bob mcwhirter",
- "email": "bob@werken.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "ben@walding.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Codehaus",
- "email": null,
- "url": "http://codehaus.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://classworlds.codehaus.org/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://cvs.classworlds.codehaus.org/",
- "vcs_url": "cvs+pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/",
- "repository_download_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom",
- "package_uid": "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2"
- },
- {
- "type": "maven",
- "namespace": "commons-fileupload",
- "name": "commons-fileupload",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "FileUpload\nThe FileUpload component provides a simple yet flexible means of adding\n support for multipart file upload functionality to servlets and web\n applications.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "dIon Gillard",
- "email": "dion@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "John McNally",
- "email": "jmcnally@collab.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Daniel Rall",
- "email": "dlr@finemaltcoding.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Robert Burrell Donkin",
- "email": "rdonkin@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Sean C. Sullivan",
- "email": "sean |at| seansullivan |dot| com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/fileupload/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://nagoya.apache.org/bugzilla/",
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.pom",
- "package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "commons-fileupload-1.0/commons-fileupload-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.0"
- },
- {
- "type": "maven",
- "namespace": "commons-validator",
- "name": "commons-validator",
- "version": "1.2.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Validator\nCommons Validator provides the building blocks for both client side validation\n and server side data validation. It may be used standalone or with a framework like\n Struts.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Don Brown",
- "email": "mrdon@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Graham",
- "email": "dgraham@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ted Husted",
- "email": "husted@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Rob Leland",
- "email": "rleland at apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Craig McClanahan",
- "email": "craigmcc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Mitchell",
- "email": "jmitchell NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Niall Pemberton",
- "email": "niallp NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Turner",
- "email": "turner@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Winterfeldt",
- "email": "dwinterfeldt@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Saul Q Yuan Add",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Shane Bailey",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Dave Derry",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Tim O'Brien",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Scott Clasen",
- "email": "ticktock@speakeasy.net>",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Marcus Brito Finish",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Padma Ginnaram",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Thomas Jacob",
- "email": "thomas.jacob@sinnerschrader.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Adam Kramer",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Greg Ludington",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Bjorn-H. Moritz",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "David Neuer",
- "email": "DavidNeuer@nascopgh.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Kurt Post",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Arun Mammen Thomas",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steven Fines",
- "email": "steven.fines@cotelligent.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Didier Romelot",
- "email": "didier.romelot@renault.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steve Stair",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Jeremy Tan",
- "email": "jeremytan@scualum.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "94RGt2",
- "email": "lmagee@biziworks.com.au",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Nacho G. Mac Dowell",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Mark Lowe",
- "email": "mark.lowe@boxstuff.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Apache Software Foundation",
- "email": null,
- "url": "http://jakarta.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/validator/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 11,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_1321.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
- }
- ],
- "identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom",
- "package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "commons-validator-1.2.0/commons-validator-1.2.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/commons-validator/commons-validator@1.2.0"
- },
- {
- "type": "maven",
- "namespace": "org.dbwebx",
- "name": "tools",
- "version": "0.0.1.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.dbwebx::tools",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "${vendor.url}",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "dbwebx_pom/dbwebx_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "easyconf",
- "name": "easyconf",
- "version": "0.9.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Easyconf library\nEasyConf is a library to access configuration of software components and applications. \n It defines simple conventions to make it easier to use. It was born in a portlets-based \n portal and has several features useful for this and similar environments.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jorge Ferrer",
- "email": "jferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jes\u00fas Jaimez",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ismael Ferrer",
- "email": "iferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "\u00c3?lvaro Gonz\u00c3\u00a1lez",
- "email": "agonzalez germinus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "EasyConf team",
- "email": null,
- "url": "http://www.sourceforge.net/projects/easyconf"
- }
- ],
- "keywords": [],
- "homepage_url": "http://easyconf.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://sourceforge.net/tracker/?group_id=131552&atid=721404",
- "code_view_url": "http://cvs.sourceforge.net/viewcvs.py/easyconf/",
- "vcs_url": "cvs+pserver:anonymous@cvs.sourceforge.net:/cvsroot/easyconf:easyconf",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.pom",
- "package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "easyconf-0.9.0/easyconf-0.9.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/easyconf/easyconf@0.9.0"
- },
- {
- "type": "maven",
- "namespace": "org.codehaus.mojo",
- "name": "findbugs-maven-plugin",
- "version": "1.1.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Maven FindBugs PlugIn\nThis Plug-In generates reports based on the FindBugs Library",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Cyrill Ruettimann",
- "email": "mypublicaddress@mac.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Garvin LeClaire",
- "email": "gleclaire@codehaus.org",
- "url": "http://gdleclaire.blogspot.com"
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Detlef Pleiss",
- "email": "d.pleiss@comundus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "CodeHaus",
- "email": null,
- "url": "http://www.codehaus.org"
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "vcs_url": "svn+https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "mit",
- "declared_license_expression_spdx": "MIT",
- "license_detections": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "matches": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "from_file": "maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 3,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "mit_1160.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
- }
- ],
- "identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1"
- },
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.lcds",
- "name": "flex_app",
- "version": "1.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.lcds custom flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n Its architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "fna2_pom/fna2_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.bash",
- "name": "bash_flex_app",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.bash bash bash_flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n\tIts architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.pom",
- "package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "fna_pom_project/fna_pom_project.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0"
- },
- {
- "type": "maven",
- "namespace": "com.myco.foo.bar.baz",
- "name": "baz-bar-parent",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "John Doe",
- "email": "jdoe@myco.com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://github.com/jode/baz-bar-parent/tree/master",
- "vcs_url": "git://github.com/jode/baz-bar-parent.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "epl-1.0",
- "declared_license_expression_spdx": "EPL-1.0",
- "license_detections": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "matches": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 6,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0_4.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
- },
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 8,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
- }
- ],
- "identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.pom",
- "package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "foo-pom/foo-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "gero_pom/gero_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "com.idega.block.addon",
- "name": "com.idega.block.contract",
- "version": "4.1.3-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "idegaWeb Contract Block\nContract",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Tryggvi Larusson",
- "email": "tryggvi@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pall Helgason",
- "email": "palli@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Eirikur Sveinn Hrafnsson",
- "email": "eiki@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Thorhallur Helgason",
- "email": "laddi@idega.is",
- "url": null
- }
- ],
- "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": "cvs+ext:idegaweb@code.idega.com:/idega/cvs:com.idega.block.addon/com.idega.block.contract/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.pom",
- "package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "idega_pom/idega_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "it.assist.jrecordbind",
- "name": "jrecordbind${artifactId.ext}",
- "version": "2.3.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "jrecordbind\nTransform fixed-length and variable-length text files into beans and back",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Federico Fissore",
- "email": "fridrik@dev.java.net",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "https://jrecordbind.dev.java.net/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://jrecordbind.dev.java.net/servlets/ProjectIssues",
- "code_view_url": "https://jrecordbind.dev.java.net/source/browse/jrecordbind/",
- "vcs_url": "svn+https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.0-plus",
- "license_expression_spdx": "LGPL-2.0-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 60.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 60,
- "rule_identifier": "lgpl_bare_single_word.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: LGPL"
- },
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 7,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl_7.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_7.RULE",
- "matched_text": " url: http://www.gnu.org/copyleft/lesser.html"
- }
- ],
- "identifier": "lgpl_2_0_plus_and_lgpl_2_1_plus-99bbf99a-48ea-24c4-e2df-f242abe6446f"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.pom",
- "package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "jrecordbind-2.3.4/jrecordbind-2.3.4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4"
- },
- {
- "type": "maven",
- "namespace": "log4j",
- "name": "log4j",
- "version": "1.2.15",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Log4j\nApache Log4j 1.2",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Apache Software Foundation",
- "email": null,
- "url": "http://www.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://logging.apache.org:80/log4j/1.2/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi/logging/log4j/tags/v1_2_15_rc6",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_15_rc6",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/log4j/log4j-pom.xml",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/log4j/log4j@1.2.15?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/",
- "repository_download_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.jar",
- "api_data_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom",
- "package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "log4j/log4j-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/log4j/log4j@1.2.15"
- },
- {
- "type": "maven",
- "namespace": "ch.qos.logback",
- "name": "logback-access",
- "version": "0.2.5",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Logback Access Module\nLogback: the generic, reliable, fast and flexible logging library for Java.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://logback.qos.ch/access",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://svn.qos.ch/viewcvs/logback/access/trunk/",
- "vcs_url": "http://svn.qos.ch/repos/logback/access/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/logback-access/logback-access.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 14,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl-2.1-plus_516.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
- "matched_text": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html"
- }
- ],
- "identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/",
- "repository_download_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.pom",
- "package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "logback-access/logback-access.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ch.qos.logback/logback-access@0.2.5"
- },
- {
- "type": "maven",
- "namespace": "org.codehaus.plexus",
- "name": "plexus-interactivity-api",
- "version": "1.0-alpha-4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Plexus Default Interactivity Handler",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pete Kazmier",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Taylor",
- "email": "james@jamestaylor.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Dan Diephouse",
- "email": "dan@envoisolutions.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kasper Nielsen",
- "email": "apache@kav.dk",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "bwalding@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Mark Wilkinson",
- "email": "mhw@kremvax.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Michal Maczka",
- "email": "mmaczka@interia.pl",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Emmanuel Venisse",
- "email": "evenisse@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Trygve Laugstol",
- "email": "trygvis@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kenney Westerhof",
- "email": "kenney@codehaus.org",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Codehaus",
- "email": null,
- "url": "http://www.codehaus.org/"
- }
- ],
- "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": "svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4"
- },
- {
- "type": "maven",
- "namespace": "ur.urwerk.test.modules",
- "name": "main",
- "version": "1.0.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test.modules:main:pom:1.0.0-SNAPSHOT",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "pom-generic/pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "proper-pom/proper_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.modeler",
- "name": "modeler",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.modeler~modeler",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.modeler/modeler@0.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.pom",
- "package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "rel_pom/rel_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.modeler/modeler@0.1"
- },
- {
- "type": "maven",
- "namespace": "no.knowit.seam",
- "name": "root",
- "version": "2.2.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "no.knowit.seam : root : 2.2.0-SNAPSHOT\nThe Seam Maven Reference implementation root POM. \n You can use this POM as a template for your own root pom.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Leif Olsen",
- "email": "loo@knowit.no",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ken Gullaksen",
- "email": "krg@knowit.no",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Know IT Objectnet AS",
- "email": null,
- "url": "http://www.knowit.no/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://code.google.com/p/seam-maven-refimpl/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://code.google.com/p/seam-maven-refimpl/source/browse/#svn/trunk",
- "vcs_url": "svn+http://seam-maven-refimpl.googlecode.com/svn/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "sea_pom/sea_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.specs",
- "name": "specs",
- "version": "1.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Geronimo Specifications\nProvides open-source implementations of Sun specifications.",
- "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": "http://svn.apache.org/viewvc/geronimo/specs/tags/1_3/",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/geronimo/specs/tags/1_3",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "specs-1.3/specs-1.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.specs/specs@1.3"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring",
- "version": "2.5.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-2.5.4/spring-2.5.4.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.pom",
- "package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-2.5.4/spring-2.5.4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring@2.5.4"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-orm",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: ORM",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom",
- "package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-orm-2.5.3/spring-orm-2.5.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring-orm@2.5.3"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-webmvc",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: Web MVC",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom",
- "package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring-webmvc@2.5.3"
- },
- {
- "type": "maven",
- "namespace": "org.jvnet.hudson.plugins",
- "name": "startup-trigger-plugin",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Startup Trigger",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Ash Lux",
- "email": "ashlux@gmail.com",
- "url": "http://www.ashlux.com/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://wiki.hudson-ci.org/display/HUDSON/Startup+Trigger",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://hudson.dev.java.net/source/browse/hudson/tags/startup-trigger-plugin-0.1",
- "vcs_url": "svn+https://guest@svn.dev.java.net/svn/hudson/tags/startup-trigger-plugin-0.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.pom",
- "package_uid": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1"
- },
- {
- "type": "maven",
- "namespace": "de.fzj.unicore.rcp",
- "name": "eclipseSequencePlugin",
- "version": "0.0.1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Eclipse Sequence 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,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "uni_pom/uni_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "ur.urwerk.test",
- "name": "ur.urwerk.test.module-y",
- "version": "1.0.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test:ur.urwerk.test.module-y:jar:1.0.0",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.pom",
- "package_uid": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "urwerky_pom/urwerky_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0"
- },
- {
- "type": "maven",
- "namespace": "org.webreformatter.wrappers",
- "name": "com.google.gwt.query",
- "version": "0.1.5.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.google.gwt.query",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "webre_pom/webre_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "au.com.acegi",
- "name": "xml-format-maven-plugin",
- "version": "3.0.6",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "XML Format Maven Plugin\nAutomatically formats XML files in a project.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/acegi/xml-format-maven-plugin/issues",
- "code_view_url": "https://github.com/acegi/xml-format-maven-plugin.git",
- "vcs_url": "git+https://github.com/acegi/xml-format-maven-plugin.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/",
- "repository_download_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.jar",
- "api_data_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6"
- }
- ],
- "dependencies": [
- {
- "purl": "pkg:maven/commons-logging/commons-logging-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging-api?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-jms",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-jms?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-pool",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-pool?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-spring",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-spring?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-test",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-test?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-all",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hamcrest/hamcrest-all?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.media/jai-core@1.1.2_01",
- "extracted_requirement": "1.1.2_01",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.media/jai-core@1.1.2_01?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jai/jai-codec@1.1.2.1",
- "extracted_requirement": "1.1.2.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jai/jai-codec@1.1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.jcraft/jsch@0.1.29",
- "extracted_requirement": "0.1.29",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.jcraft/jsch@0.1.29?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/servletapi/servletapi@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/oro/oro@2.0.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xml-apis/xml-apis@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.8",
- "extracted_requirement": "1.2.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/log4j/log4j@1.2.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/servletapi/servletapi@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/struts/struts@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/struts/struts@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-configuration/commons-configuration@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-configuration/commons-configuration@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-collections/commons-collections@3.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/dom4j/dom4j@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xerces/xerces@2.2.1",
- "extracted_requirement": "2.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xerces/xerces@2.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xml-apis/xml-apis@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xdoclet/xdoclet@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-jmx@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mx4j/mx4j-jmx@2.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-impl@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mx4j/mx4j-impl@2.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-artifact@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven/maven-artifact@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8",
- "extracted_requirement": "1.0-alpha-8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0",
- "extracted_requirement": "1.2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/info.flex-mojos/testing-support?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit-optional",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit-optional?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex/compiler?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex.framework/flex-framework?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.lcds/fds",
- "extracted_requirement": "${lcds.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.lcds/fds?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0",
- "extracted_requirement": "1.0",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex/compiler?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex.framework/flex-framework?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexunit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/info.flex-mojos/testing-support?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo/common-dependencies@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0",
- "extracted_requirement": "1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo/common-dependencies@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "gero_pom/gero_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.idega.block.platform/com.idega.core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.block.media",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.idega.block.platform/com.idega.block.media?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/itextpdf/itext-paulo",
- "extracted_requirement": "${itextpdf-itext-paulo-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/itextpdf/itext-paulo?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/itext/itext-xml",
- "extracted_requirement": "${itext-itext-xml-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/itext/itext-xml?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414",
- "extracted_requirement": "20020414",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xsom/xsom@20081112",
- "extracted_requirement": "20081112",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xsom/xsom@20081112?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.mail/mail@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jms/jms@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.jmx/jmxri@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.jmx/jmxri@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/oro/oro@2.0.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/ch.qos.logback/logback-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/ch.qos.logback/logback-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/tomcat/catalina",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/tomcat/catalina?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/jetty",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mortbay.jetty/jetty?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.caucho/resin",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.caucho/resin?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/servlet-api-2.5",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mortbay.jetty/servlet-api-2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7",
- "extracted_requirement": "1.0-alpha-7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2",
- "extracted_requirement": "1.1-alpha-2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/plexus/plexus-utils@1.0.2",
- "extracted_requirement": "1.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/plexus/plexus-utils@1.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "proper-pom/proper_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.6.1",
- "extracted_requirement": "1.6.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/dom4j/dom4j@1.6.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1",
- "extracted_requirement": "3.3.2.Beta1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2",
- "extracted_requirement": "1.4.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4",
- "extracted_requirement": "8.3-603.jdbc4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2",
- "extracted_requirement": "3.2.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jboss/jboss-cache@1.4.1.SP9",
- "extracted_requirement": "1.4.1.SP9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jboss/jboss-cache@1.4.1.SP9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA",
- "extracted_requirement": "3.1.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.transaction/jta@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3",
- "extracted_requirement": "1.6.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.drools/drools-core@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.drools/drools-core@5.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4",
- "extracted_requirement": "1.0_02.CR4",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0",
- "extracted_requirement": "3.1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.drools/drools-api@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.drools/drools-api@5.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga",
- "extracted_requirement": "3.3.0.ga",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.antlr/antlr@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.antlr/antlr@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.antlr/antlr-runtime@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.antlr/antlr-runtime@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.3",
- "extracted_requirement": "2.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.h2database/h2@1.1.118",
- "extracted_requirement": "1.1.118",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.h2database/h2@1.1.118?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mysql/mysql-connector-java@5.1.10",
- "extracted_requirement": "5.1.10",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mysql/mysql-connector-java@5.1.10?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.openejb/openejb-core@3.1.2",
- "extracted_requirement": "3.1.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.openejb/openejb-core@3.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@4.7",
- "extracted_requirement": "4.7",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@4.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.testng/testng@5.9",
- "extracted_requirement": "5.9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.testng/testng@5.9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "specs-1.3/specs-1.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm-commons@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm-commons@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm-util@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm-util@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aspectj/aspectjrt@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aspectj/aspectjrt@1.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aspectj/aspectjweaver@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aspectj/aspectjweaver@1.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0",
- "extracted_requirement": "3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/c3p0/c3p0@0.9.1.2",
- "extracted_requirement": "0.9.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/c3p0/c3p0@0.9.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/cglib/cglib-nodep@2.1_3",
- "extracted_requirement": "2.1_3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/cglib/cglib-nodep@2.1_3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-api@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.2",
- "extracted_requirement": "3.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-collections/commons-collections@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2",
- "extracted_requirement": "1.2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.2",
- "extracted_requirement": "1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-httpclient/commons-httpclient@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-httpclient/commons-httpclient@3.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-pool/commons-pool@1.3",
- "extracted_requirement": "1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-pool/commons-pool@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.experlog/xapool@1.5.0",
- "extracted_requirement": "1.5.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.experlog/xapool@1.5.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677",
- "extracted_requirement": "2.3.0.677",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.jamonapi/jamon@2.4",
- "extracted_requirement": "2.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.jamonapi/jamon@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.lowagie/itext@2.0.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle.toplink/toplink@10.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/toplink-essentials@2.41?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/oc4j@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/oc4j@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/freemarker/freemarker@2.3.12?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/groovy/groovy@1.5.5",
- "extracted_requirement": "1.5.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/groovy/groovy@1.5.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/hessian/hessian@3.1.3",
- "extracted_requirement": "3.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/hessian/hessian@3.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jasperreports/jasperreports@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jexcelapi/jxl@2.6.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jotm/jotm@2.0.10",
- "extracted_requirement": "2.0.10",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jotm/jotm@2.0.10?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jruby/jruby-bin@1.0.1",
- "extracted_requirement": "1.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jruby/jruby-bin@1.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.15",
- "extracted_requirement": "1.2.15",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/net.sf.ehcache/ehcache@1.4.1",
- "extracted_requirement": "1.4.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/net.sf.ehcache/ehcache@1.4.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-api@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-core@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.beanshell/bsh@2.0b4",
- "extracted_requirement": "2.0b4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.beanshell/bsh@2.0b4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate@3.2.6.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga",
- "extracted_requirement": "3.3.2.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/poi/poi@3.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/opensymphony/quartz-all@1.6.0",
- "extracted_requirement": "1.6.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/opensymphony/quartz-all@1.6.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/struts/struts@1.2.9",
- "extracted_requirement": "1.2.9",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/struts/struts@1.2.9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/taglibs/standard@1.1.2",
- "extracted_requirement": "1.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/taglibs/standard@1.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/tomcat/catalina@5.5.23",
- "extracted_requirement": "5.5.23",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/tomcat/catalina@5.5.23?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity/velocity@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-generic@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-view@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.activation/activation@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.activation/activation@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.ejb/ejb@3.0",
- "extracted_requirement": "3.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.ejb/ejb@3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.faces/jsf-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.faces/jsf-api@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jdo/jdo2-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jms/jms@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.mail/mail@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.persistence/persistence-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.portlet/portlet-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.portlet/portlet-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.resource/connector-api@1.5",
- "extracted_requirement": "1.5",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.resource/connector-api@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jsp-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jstl@1.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/servlet-api@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.transaction/jta@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.xml/jaxrpc-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.xml/jaxrpc-api@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/toplink-essentials@2.41?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle.toplink/toplink@10.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0",
- "extracted_requirement": "2.3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate@3.2.6.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga",
- "extracted_requirement": "3.3.1.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-aop@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-aop@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-beans@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-core@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-jdbc@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-jdbc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-tx@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-tx@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-web@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jdo/jdo2-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.persistence/persistence-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-api@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.lowagie/itext@2.0.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/freemarker/freemarker@2.3.12?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jasperreports/jasperreports@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jexcelapi/jxl@2.6.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-api@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-core@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/poi/poi@3.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity/velocity@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-generic@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-view@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-beans@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context-support@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context-support@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-core@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-web@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jsp-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jstl@1.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/servlet-api@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-all@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mockito/mockito-all@1.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT",
- "extracted_requirement": "2.0.4-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT",
- "extracted_requirement": "0.0.2-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hamcrest/hamcrest-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mockito/mockito-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-plugin-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven/maven-plugin-api?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-utils",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.plexus/plexus-utils?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.dom4j/dom4j@2.0.1",
- "extracted_requirement": "2.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.dom4j/dom4j@2.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- }
- ],
- "files": [
- {
- "path": "activemq-camel",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.activemq",
- "name": "activemq-camel",
- "version": "5.4.2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ActiveMQ :: Camel\nActiveMQ component for Camel",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-logging/commons-logging-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-jms",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-pool",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-spring",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-test",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-all",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "adarwin",
- "name": "adarwin",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/adarwin/adarwin@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/adarwin/adarwin@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jai",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "image task and corresponding types.\n jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided\n the download URL is http://java.sun.com/products/java-media/jai/",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.media/jai-core@1.1.2_01",
- "extracted_requirement": "1.1.2_01",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jai/jai-codec@1.1.2.1",
- "extracted_requirement": "1.1.2.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.ant/ant-jai@1.7.0"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jsch",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "contains the sshexec and scp tasks\n jsch 0.1.29 might not be available from maven",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.jcraft/jsch@0.1.29",
- "extracted_requirement": "0.1.29",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.ant/ant-jsch@1.7.0"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "aopalliance",
- "name": "aopalliance",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "AOP alliance\nAOP Alliance",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://aopalliance.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": "public-domain AND gpl-1.0-plus",
- "declared_license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "license_detections": [
- {
- "license_expression": "public-domain AND gpl-1.0-plus",
- "license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "matches": [
- {
- "license_expression": "public-domain",
- "license_expression_spdx": "LicenseRef-scancode-public-domain",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 70.0,
- "matched_length": 2,
- "match_coverage": 100.0,
- "rule_relevance": 70,
- "rule_identifier": "public-domain_bare_words.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
- },
- {
- "license_expression": "gpl-1.0-plus",
- "license_expression_spdx": "GPL-1.0-or-later",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 50.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 50,
- "rule_identifier": "gpl_bare_word_only.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE",
- "matched_text": "- name: GPL"
- }
- ],
- "identifier": "public_domain_and_gpl_1_0_plus-1122e82b-9e72-f9bb-082b-2717cb5076ed"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n- name: GPL\n url: http://nexb.com\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/aopalliance/aopalliance@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "bcel",
- "name": "bcel",
- "version": "5.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/bcel/bcel@5.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/bcel/bcel@5.1"
- }
- ],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "classworlds",
- "name": "classworlds",
- "version": "1.1-alpha-2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "classworlds",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "bob mcwhirter",
- "email": "bob@werken.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "ben@walding.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Codehaus",
- "email": null,
- "url": "http://codehaus.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://classworlds.codehaus.org/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://cvs.classworlds.codehaus.org/",
- "vcs_url": "cvs+pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/",
- "repository_download_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2"
- }
- ],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "commons-fileupload",
- "name": "commons-fileupload",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "FileUpload\nThe FileUpload component provides a simple yet flexible means of adding\n support for multipart file upload functionality to servlets and web\n applications.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "dIon Gillard",
- "email": "dion@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "John McNally",
- "email": "jmcnally@collab.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Daniel Rall",
- "email": "dlr@finemaltcoding.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Robert Burrell Donkin",
- "email": "rdonkin@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Sean C. Sullivan",
- "email": "sean |at| seansullivan |dot| com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/fileupload/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://nagoya.apache.org/bugzilla/",
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "commons-validator",
- "name": "commons-validator",
- "version": "1.2.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Validator\nCommons Validator provides the building blocks for both client side validation\n and server side data validation. It may be used standalone or with a framework like\n Struts.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Don Brown",
- "email": "mrdon@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Graham",
- "email": "dgraham@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ted Husted",
- "email": "husted@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Rob Leland",
- "email": "rleland at apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Craig McClanahan",
- "email": "craigmcc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Mitchell",
- "email": "jmitchell NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Niall Pemberton",
- "email": "niallp NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Turner",
- "email": "turner@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Winterfeldt",
- "email": "dwinterfeldt@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Saul Q Yuan Add",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Shane Bailey",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Dave Derry",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Tim O'Brien",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Scott Clasen",
- "email": "ticktock@speakeasy.net>",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Marcus Brito Finish",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Padma Ginnaram",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Thomas Jacob",
- "email": "thomas.jacob@sinnerschrader.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Adam Kramer",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Greg Ludington",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Bjorn-H. Moritz",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "David Neuer",
- "email": "DavidNeuer@nascopgh.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Kurt Post",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Arun Mammen Thomas",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steven Fines",
- "email": "steven.fines@cotelligent.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Didier Romelot",
- "email": "didier.romelot@renault.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steve Stair",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Jeremy Tan",
- "email": "jeremytan@scualum.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "94RGt2",
- "email": "lmagee@biziworks.com.au",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Nacho G. Mac Dowell",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Mark Lowe",
- "email": "mark.lowe@boxstuff.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Apache Software Foundation",
- "email": null,
- "url": "http://jakarta.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/validator/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 11,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_1321.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
- }
- ],
- "identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/commons-validator/commons-validator@1.2.0"
- }
- ],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.dbwebx",
- "name": "tools",
- "version": "0.0.1.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.dbwebx::tools",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "${vendor.url}",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "easyconf",
- "name": "easyconf",
- "version": "0.9.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Easyconf library\nEasyConf is a library to access configuration of software components and applications. \n It defines simple conventions to make it easier to use. It was born in a portlets-based \n portal and has several features useful for this and similar environments.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jorge Ferrer",
- "email": "jferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jes\u00fas Jaimez",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ismael Ferrer",
- "email": "iferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "\u00c3?lvaro Gonz\u00c3\u00a1lez",
- "email": "agonzalez germinus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "EasyConf team",
- "email": null,
- "url": "http://www.sourceforge.net/projects/easyconf"
- }
- ],
- "keywords": [],
- "homepage_url": "http://easyconf.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://sourceforge.net/tracker/?group_id=131552&atid=721404",
- "code_view_url": "http://cvs.sourceforge.net/viewcvs.py/easyconf/",
- "vcs_url": "cvs+pserver:anonymous@cvs.sourceforge.net:/cvsroot/easyconf:easyconf",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/log4j/log4j@1.2.8",
- "extracted_requirement": "1.2.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/struts/struts@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-configuration/commons-configuration@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xerces/xerces@2.2.1",
- "extracted_requirement": "2.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-jmx@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-impl@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/easyconf/easyconf@0.9.0"
- }
- ],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.codehaus.mojo",
- "name": "findbugs-maven-plugin",
- "version": "1.1.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Maven FindBugs PlugIn\nThis Plug-In generates reports based on the FindBugs Library",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Cyrill Ruettimann",
- "email": "mypublicaddress@mac.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Garvin LeClaire",
- "email": "gleclaire@codehaus.org",
- "url": "http://gdleclaire.blogspot.com"
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Detlef Pleiss",
- "email": "d.pleiss@comundus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "CodeHaus",
- "email": null,
- "url": "http://www.codehaus.org"
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "vcs_url": "svn+https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "mit",
- "declared_license_expression_spdx": "MIT",
- "license_detections": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "matches": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "from_file": "maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 3,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "mit_1160.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
- }
- ],
- "identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.maven/maven-artifact@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8",
- "extracted_requirement": "1.0-alpha-8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0",
- "extracted_requirement": "1.2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.lcds",
- "name": "flex_app",
- "version": "1.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.lcds custom flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n Its architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit-optional",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.lcds/fds",
- "extracted_requirement": "${lcds.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.bash",
- "name": "bash_flex_app",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.bash bash bash_flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n\tIts architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0",
- "extracted_requirement": "1.0",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexunit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.myco.foo.bar.baz",
- "name": "baz-bar-parent",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "John Doe",
- "email": "jdoe@myco.com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://github.com/jode/baz-bar-parent/tree/master",
- "vcs_url": "git://github.com/jode/baz-bar-parent.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "epl-1.0",
- "declared_license_expression_spdx": "EPL-1.0",
- "license_detections": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "matches": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 6,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0_4.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
- },
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 8,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
- }
- ],
- "identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0",
- "extracted_requirement": "1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.idega.block.addon",
- "name": "com.idega.block.contract",
- "version": "4.1.3-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "idegaWeb Contract Block\nContract",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Tryggvi Larusson",
- "email": "tryggvi@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pall Helgason",
- "email": "palli@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Eirikur Sveinn Hrafnsson",
- "email": "eiki@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Thorhallur Helgason",
- "email": "laddi@idega.is",
- "url": null
- }
- ],
- "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": "cvs+ext:idegaweb@code.idega.com:/idega/cvs:com.idega.block.addon/com.idega.block.contract/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.block.media",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/itextpdf/itext-paulo",
- "extracted_requirement": "${itextpdf-itext-paulo-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/itext/itext-xml",
- "extracted_requirement": "${itext-itext-xml-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "it.assist.jrecordbind",
- "name": "jrecordbind${artifactId.ext}",
- "version": "2.3.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "jrecordbind\nTransform fixed-length and variable-length text files into beans and back",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Federico Fissore",
- "email": "fridrik@dev.java.net",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "https://jrecordbind.dev.java.net/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://jrecordbind.dev.java.net/servlets/ProjectIssues",
- "code_view_url": "https://jrecordbind.dev.java.net/source/browse/jrecordbind/",
- "vcs_url": "svn+https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.0-plus",
- "license_expression_spdx": "LGPL-2.0-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 60.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 60,
- "rule_identifier": "lgpl_bare_single_word.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: LGPL"
- },
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 7,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl_7.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_7.RULE",
- "matched_text": " url: http://www.gnu.org/copyleft/lesser.html"
- }
- ],
- "identifier": "lgpl_2_0_plus_and_lgpl_2_1_plus-99bbf99a-48ea-24c4-e2df-f242abe6446f"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414",
- "extracted_requirement": "20020414",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xsom/xsom@20081112",
- "extracted_requirement": "20081112",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4"
- }
- ],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "log4j",
- "name": "log4j",
- "version": "1.2.15",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Log4j\nApache Log4j 1.2",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Apache Software Foundation",
- "email": null,
- "url": "http://www.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://logging.apache.org:80/log4j/1.2/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi/logging/log4j/tags/v1_2_15_rc6",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_15_rc6",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/log4j/log4j-pom.xml",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/log4j/log4j@1.2.15?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.jmx/jmxri@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/",
- "repository_download_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.jar",
- "api_data_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/log4j/log4j@1.2.15"
- }
- ],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "ch.qos.logback",
- "name": "logback-access",
- "version": "0.2.5",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Logback Access Module\nLogback: the generic, reliable, fast and flexible logging library for Java.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://logback.qos.ch/access",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://svn.qos.ch/viewcvs/logback/access/trunk/",
- "vcs_url": "http://svn.qos.ch/repos/logback/access/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/logback-access/logback-access.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 14,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl-2.1-plus_516.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
- "matched_text": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html"
- }
- ],
- "identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/ch.qos.logback/logback-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/tomcat/catalina",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/jetty",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.caucho/resin",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/servlet-api-2.5",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/",
- "repository_download_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ch.qos.logback/logback-access@0.2.5"
- }
- ],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.codehaus.plexus",
- "name": "plexus-interactivity-api",
- "version": "1.0-alpha-4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Plexus Default Interactivity Handler",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pete Kazmier",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Taylor",
- "email": "james@jamestaylor.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Dan Diephouse",
- "email": "dan@envoisolutions.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kasper Nielsen",
- "email": "apache@kav.dk",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "bwalding@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Mark Wilkinson",
- "email": "mhw@kremvax.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Michal Maczka",
- "email": "mmaczka@interia.pl",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Emmanuel Venisse",
- "email": "evenisse@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Trygve Laugstol",
- "email": "trygvis@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kenney Westerhof",
- "email": "kenney@codehaus.org",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Codehaus",
- "email": null,
- "url": "http://www.codehaus.org/"
- }
- ],
- "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": "svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7",
- "extracted_requirement": "1.0-alpha-7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2",
- "extracted_requirement": "1.1-alpha-2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/plexus/plexus-utils@1.0.2",
- "extracted_requirement": "1.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4"
- }
- ],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "ur.urwerk.test.modules",
- "name": "main",
- "version": "1.0.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test.modules:main:pom:1.0.0-SNAPSHOT",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.modeler",
- "name": "modeler",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.modeler~modeler",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.modeler/modeler@0.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.6.1",
- "extracted_requirement": "1.6.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1",
- "extracted_requirement": "3.3.2.Beta1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2",
- "extracted_requirement": "1.4.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4",
- "extracted_requirement": "8.3-603.jdbc4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.modeler/modeler@0.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "no.knowit.seam",
- "name": "root",
- "version": "2.2.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "no.knowit.seam : root : 2.2.0-SNAPSHOT\nThe Seam Maven Reference implementation root POM. \n You can use this POM as a template for your own root pom.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Leif Olsen",
- "email": "loo@knowit.no",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ken Gullaksen",
- "email": "krg@knowit.no",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Know IT Objectnet AS",
- "email": null,
- "url": "http://www.knowit.no/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://code.google.com/p/seam-maven-refimpl/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://code.google.com/p/seam-maven-refimpl/source/browse/#svn/trunk",
- "vcs_url": "svn+http://seam-maven-refimpl.googlecode.com/svn/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2",
- "extracted_requirement": "3.2.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jboss/jboss-cache@1.4.1.SP9",
- "extracted_requirement": "1.4.1.SP9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA",
- "extracted_requirement": "3.1.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3",
- "extracted_requirement": "1.6.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.drools/drools-core@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4",
- "extracted_requirement": "1.0_02.CR4",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0",
- "extracted_requirement": "3.1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.drools/drools-api@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga",
- "extracted_requirement": "3.3.0.ga",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.antlr/antlr@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.antlr/antlr-runtime@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.3",
- "extracted_requirement": "2.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.h2database/h2@1.1.118",
- "extracted_requirement": "1.1.118",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mysql/mysql-connector-java@5.1.10",
- "extracted_requirement": "5.1.10",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.openejb/openejb-core@3.1.2",
- "extracted_requirement": "3.1.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@4.7",
- "extracted_requirement": "4.7",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.testng/testng@5.9",
- "extracted_requirement": "5.9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.specs",
- "name": "specs",
- "version": "1.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Geronimo Specifications\nProvides open-source implementations of Sun specifications.",
- "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": "http://svn.apache.org/viewvc/geronimo/specs/tags/1_3/",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/geronimo/specs/tags/1_3",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.specs/specs@1.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring",
- "version": "2.5.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-2.5.4/spring-2.5.4.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm-commons@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm-util@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/aspectj/aspectjrt@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/aspectj/aspectjweaver@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0",
- "extracted_requirement": "3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/c3p0/c3p0@0.9.1.2",
- "extracted_requirement": "0.9.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/cglib/cglib-nodep@2.1_3",
- "extracted_requirement": "2.1_3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.2",
- "extracted_requirement": "3.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2",
- "extracted_requirement": "1.2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.2",
- "extracted_requirement": "1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-httpclient/commons-httpclient@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-pool/commons-pool@1.3",
- "extracted_requirement": "1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.experlog/xapool@1.5.0",
- "extracted_requirement": "1.5.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677",
- "extracted_requirement": "2.3.0.677",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.jamonapi/jamon@2.4",
- "extracted_requirement": "2.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/oc4j@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/groovy/groovy@1.5.5",
- "extracted_requirement": "1.5.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/hessian/hessian@3.1.3",
- "extracted_requirement": "3.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jotm/jotm@2.0.10",
- "extracted_requirement": "2.0.10",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jruby/jruby-bin@1.0.1",
- "extracted_requirement": "1.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.15",
- "extracted_requirement": "1.2.15",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/net.sf.ehcache/ehcache@1.4.1",
- "extracted_requirement": "1.4.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.beanshell/bsh@2.0b4",
- "extracted_requirement": "2.0b4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga",
- "extracted_requirement": "3.3.2.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/opensymphony/quartz-all@1.6.0",
- "extracted_requirement": "1.6.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/struts/struts@1.2.9",
- "extracted_requirement": "1.2.9",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/taglibs/standard@1.1.2",
- "extracted_requirement": "1.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/tomcat/catalina@5.5.23",
- "extracted_requirement": "5.5.23",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.activation/activation@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.ejb/ejb@3.0",
- "extracted_requirement": "3.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.faces/jsf-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.portlet/portlet-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.resource/connector-api@1.5",
- "extracted_requirement": "1.5",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.xml/jaxrpc-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring@2.5.4"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-orm",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: ORM",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0",
- "extracted_requirement": "2.3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga",
- "extracted_requirement": "3.3.1.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-aop@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-jdbc@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-tx@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring-orm@2.5.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-webmvc",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: Web MVC",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context-support@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring-webmvc@2.5.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.jvnet.hudson.plugins",
- "name": "startup-trigger-plugin",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Startup Trigger",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Ash Lux",
- "email": "ashlux@gmail.com",
- "url": "http://www.ashlux.com/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://wiki.hudson-ci.org/display/HUDSON/Startup+Trigger",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://hudson.dev.java.net/source/browse/hudson/tags/startup-trigger-plugin-0.1",
- "vcs_url": "svn+https://guest@svn.dev.java.net/svn/hudson/tags/startup-trigger-plugin-0.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.mockito/mockito-all@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "de.fzj.unicore.rcp",
- "name": "eclipseSequencePlugin",
- "version": "0.0.1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Eclipse Sequence 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,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT",
- "extracted_requirement": "2.0.4-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT",
- "extracted_requirement": "0.0.2-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml",
- "type": "file",
- "package_data": [
+ "primary_language": "Java",
+ "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
+ "release_date": null,
+ "parties": [],
+ "keywords": [],
+ "homepage_url": null,
+ "download_url": null,
+ "size": null,
+ "sha1": null,
+ "md5": null,
+ "sha256": null,
+ "sha512": null,
+ "bug_tracking_url": null,
+ "code_view_url": null,
+ "vcs_url": null,
+ "copyright": null,
+ "holder": null,
+ "declared_license_expression": "bsd-new",
+ "declared_license_expression_spdx": "BSD-3-Clause",
+ "license_detections": [
{
- "type": "maven",
- "namespace": "ur.urwerk.test",
- "name": "ur.urwerk.test.module-y",
- "version": "1.0.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test:ur.urwerk.test.module-y:jar:1.0.0",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?classifier=sources"
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "matches": [
+ {
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "from_file": "maven/pom.xml",
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "bsd-new_363.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_363.RULE",
+ "matched_text": "name: HSQLDB License"
+ },
+ {
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "from_file": "maven/pom.xml",
+ "start_line": 2,
+ "end_line": 2,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "bsd-new_82.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_82.RULE",
+ "matched_text": "url: http://hsqldb.org/web/hsqlLicense.html"
+ }
],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0"
+ "identifier": "bsd_new-4b5f8fe0-ffc8-f64d-7809-e39f0b5fe0eb"
}
],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
+ "other_license_expression": null,
+ "other_license_expression_spdx": null,
+ "other_license_detections": [],
+ "extracted_license_statement": "- license:\n name: HSQLDB License\n url: http://hsqldb.org/web/hsqlLicense.html\n",
+ "notice_text": null,
+ "source_packages": [
+ "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
+ "is_private": false,
+ "is_virtual": false,
+ "extra_data": {},
+ "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
+ "package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
+ "datafile_paths": [
+ "pom.xml"
],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
+ "datasource_ids": [
+ "maven_pom"
],
- "scan_errors": []
- },
+ "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
+ }
+ ],
+ "dependencies": [
{
- "path": "webre_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
+ "purl": "pkg:maven/org.apache.axis/axis@1.4",
+ "extracted_requirement": "1.4",
+ "scope": "compile",
+ "is_runtime": false,
+ "is_optional": true,
+ "is_pinned": true,
+ "is_direct": true,
+ "resolved_package": {},
+ "extra_data": {},
+ "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
+ "for_package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
+ "datafile_path": "pom.xml",
+ "datasource_id": "maven_pom"
+ }
+ ],
+ "files": [
{
- "path": "webre_pom/webre_pom.xml",
+ "path": "pom.xml",
"type": "file",
"package_data": [
{
"type": "maven",
- "namespace": "org.webreformatter.wrappers",
- "name": "com.google.gwt.query",
- "version": "0.1.5.SNAPSHOT",
+ "namespace": "org.apache.geronimo.bundles",
+ "name": "axis",
+ "version": "1.4_1-SNAPSHOT",
"qualifiers": {},
"subpath": null,
"primary_language": "Java",
- "description": "com.google.gwt.query",
+ "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
"release_date": null,
"parties": [],
"keywords": [],
@@ -12777,99 +135,54 @@
"vcs_url": null,
"copyright": null,
"holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?classifier=sources"
+ "declared_license_expression": "bsd-new",
+ "declared_license_expression_spdx": "BSD-3-Clause",
+ "license_detections": [
+ {
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "matches": [
+ {
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "from_file": "maven/pom.xml",
+ "start_line": 1,
+ "end_line": 1,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 2,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "bsd-new_363.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_363.RULE",
+ "matched_text": "name: HSQLDB License"
+ },
+ {
+ "license_expression": "bsd-new",
+ "license_expression_spdx": "BSD-3-Clause",
+ "from_file": "maven/pom.xml",
+ "start_line": 2,
+ "end_line": 2,
+ "matcher": "2-aho",
+ "score": 100.0,
+ "matched_length": 6,
+ "match_coverage": 100.0,
+ "rule_relevance": 100,
+ "rule_identifier": "bsd-new_82.RULE",
+ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_82.RULE",
+ "matched_text": "url: http://hsqldb.org/web/hsqlLicense.html"
+ }
+ ],
+ "identifier": "bsd_new-4b5f8fe0-ffc8-f64d-7809-e39f0b5fe0eb"
+ }
],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom/webre_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom/webre_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "au.com.acegi",
- "name": "xml-format-maven-plugin",
- "version": "3.0.6",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "XML Format Maven Plugin\nAutomatically formats XML files in a project.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/acegi/xml-format-maven-plugin/issues",
- "code_view_url": "https://github.com/acegi/xml-format-maven-plugin.git",
- "vcs_url": "git+https://github.com/acegi/xml-format-maven-plugin.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": null,
+ "extracted_license_statement": "- license:\n name: HSQLDB License\n url: http://hsqldb.org/web/hsqlLicense.html\n",
"notice_text": null,
"source_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?classifier=sources"
+ "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
],
"file_references": [],
"is_private": false,
@@ -12877,74 +190,8 @@
"extra_data": {},
"dependencies": [
{
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-plugin-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-utils",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.dom4j/dom4j@2.0.1",
- "extracted_requirement": "2.0.1",
+ "purl": "pkg:maven/org.apache.axis/axis@1.4",
+ "extracted_requirement": "1.4",
"scope": "compile",
"is_runtime": false,
"is_optional": true,
@@ -12954,33 +201,15 @@
"extra_data": {}
}
],
- "repository_homepage_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/",
- "repository_download_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.jar",
- "api_data_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.pom",
+ "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
+ "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
+ "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
"datasource_id": "maven_pom",
- "purl": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6"
+ "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
}
],
"for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
+ "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
],
"scan_errors": []
}
diff --git a/tests/packagedcode/data/plugin/maven-package-with-license-expected.json b/tests/packagedcode/data/plugin/maven-package-with-license-expected.json
deleted file mode 100644
index e9e8e15a9c..0000000000
--- a/tests/packagedcode/data/plugin/maven-package-with-license-expected.json
+++ /dev/null
@@ -1,12988 +0,0 @@
-{
- "packages": [
- {
- "type": "maven",
- "namespace": "org.apache.activemq",
- "name": "activemq-camel",
- "version": "5.4.2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ActiveMQ :: Camel\nActiveMQ component for Camel",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.pom",
- "package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "activemq-camel/activemq-camel-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2"
- },
- {
- "type": "maven",
- "namespace": "adarwin",
- "name": "adarwin",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/adarwin/adarwin@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.pom",
- "package_uid": "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "adarwin-1.0/adarwin-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/adarwin/adarwin@1.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jai",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "image task and corresponding types.\n jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided\n the download URL is http://java.sun.com/products/java-media/jai/",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.pom",
- "package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "ant-jai-1.7.0/ant-jai-1.7.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.ant/ant-jai@1.7.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jsch",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "contains the sshexec and scp tasks\n jsch 0.1.29 might not be available from maven",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.pom",
- "package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "ant-jsch-1.7.0/ant-jsch-1.7.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.ant/ant-jsch@1.7.0"
- },
- {
- "type": "maven",
- "namespace": "aopalliance",
- "name": "aopalliance",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "AOP alliance\nAOP Alliance",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://aopalliance.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": "public-domain AND gpl-1.0-plus",
- "declared_license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "license_detections": [
- {
- "license_expression": "public-domain AND gpl-1.0-plus",
- "license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "matches": [
- {
- "license_expression": "public-domain",
- "license_expression_spdx": "LicenseRef-scancode-public-domain",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 70.0,
- "matched_length": 2,
- "match_coverage": 100.0,
- "rule_relevance": 70,
- "rule_identifier": "public-domain_bare_words.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
- },
- {
- "license_expression": "gpl-1.0-plus",
- "license_expression_spdx": "GPL-1.0-or-later",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 50.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 50,
- "rule_identifier": "gpl_bare_word_only.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE",
- "matched_text": "- name: GPL"
- }
- ],
- "identifier": "public_domain_and_gpl_1_0_plus-1122e82b-9e72-f9bb-082b-2717cb5076ed"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n- name: GPL\n url: http://nexb.com\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom",
- "package_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "aopalliance-1.0/aopalliance-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/aopalliance/aopalliance@1.0"
- },
- {
- "type": "maven",
- "namespace": "bcel",
- "name": "bcel",
- "version": "5.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/bcel/bcel@5.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.pom",
- "package_uid": "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "bcel-5.1/bcel-5.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/bcel/bcel@5.1"
- },
- {
- "type": "maven",
- "namespace": "classworlds",
- "name": "classworlds",
- "version": "1.1-alpha-2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "classworlds",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "bob mcwhirter",
- "email": "bob@werken.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "ben@walding.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Codehaus",
- "email": null,
- "url": "http://codehaus.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://classworlds.codehaus.org/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://cvs.classworlds.codehaus.org/",
- "vcs_url": "cvs+pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/",
- "repository_download_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom",
- "package_uid": "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2"
- },
- {
- "type": "maven",
- "namespace": "commons-fileupload",
- "name": "commons-fileupload",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "FileUpload\nThe FileUpload component provides a simple yet flexible means of adding\n support for multipart file upload functionality to servlets and web\n applications.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "dIon Gillard",
- "email": "dion@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "John McNally",
- "email": "jmcnally@collab.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Daniel Rall",
- "email": "dlr@finemaltcoding.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Robert Burrell Donkin",
- "email": "rdonkin@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Sean C. Sullivan",
- "email": "sean |at| seansullivan |dot| com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/fileupload/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://nagoya.apache.org/bugzilla/",
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.pom",
- "package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "commons-fileupload-1.0/commons-fileupload-1.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.0"
- },
- {
- "type": "maven",
- "namespace": "commons-validator",
- "name": "commons-validator",
- "version": "1.2.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Validator\nCommons Validator provides the building blocks for both client side validation\n and server side data validation. It may be used standalone or with a framework like\n Struts.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Don Brown",
- "email": "mrdon@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Graham",
- "email": "dgraham@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ted Husted",
- "email": "husted@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Rob Leland",
- "email": "rleland at apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Craig McClanahan",
- "email": "craigmcc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Mitchell",
- "email": "jmitchell NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Niall Pemberton",
- "email": "niallp NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Turner",
- "email": "turner@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Winterfeldt",
- "email": "dwinterfeldt@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Saul Q Yuan Add",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Shane Bailey",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Dave Derry",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Tim O'Brien",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Scott Clasen",
- "email": "ticktock@speakeasy.net>",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Marcus Brito Finish",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Padma Ginnaram",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Thomas Jacob",
- "email": "thomas.jacob@sinnerschrader.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Adam Kramer",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Greg Ludington",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Bjorn-H. Moritz",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "David Neuer",
- "email": "DavidNeuer@nascopgh.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Kurt Post",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Arun Mammen Thomas",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steven Fines",
- "email": "steven.fines@cotelligent.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Didier Romelot",
- "email": "didier.romelot@renault.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steve Stair",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Jeremy Tan",
- "email": "jeremytan@scualum.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "94RGt2",
- "email": "lmagee@biziworks.com.au",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Nacho G. Mac Dowell",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Mark Lowe",
- "email": "mark.lowe@boxstuff.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Apache Software Foundation",
- "email": null,
- "url": "http://jakarta.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/validator/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 11,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_1321.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
- }
- ],
- "identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom",
- "package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "commons-validator-1.2.0/commons-validator-1.2.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/commons-validator/commons-validator@1.2.0"
- },
- {
- "type": "maven",
- "namespace": "org.dbwebx",
- "name": "tools",
- "version": "0.0.1.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.dbwebx::tools",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "${vendor.url}",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "dbwebx_pom/dbwebx_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "easyconf",
- "name": "easyconf",
- "version": "0.9.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Easyconf library\nEasyConf is a library to access configuration of software components and applications. \n It defines simple conventions to make it easier to use. It was born in a portlets-based \n portal and has several features useful for this and similar environments.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jorge Ferrer",
- "email": "jferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jes\u00fas Jaimez",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ismael Ferrer",
- "email": "iferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "\u00c3?lvaro Gonz\u00c3\u00a1lez",
- "email": "agonzalez germinus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "EasyConf team",
- "email": null,
- "url": "http://www.sourceforge.net/projects/easyconf"
- }
- ],
- "keywords": [],
- "homepage_url": "http://easyconf.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://sourceforge.net/tracker/?group_id=131552&atid=721404",
- "code_view_url": "http://cvs.sourceforge.net/viewcvs.py/easyconf/",
- "vcs_url": "cvs+pserver:anonymous@cvs.sourceforge.net:/cvsroot/easyconf:easyconf",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.pom",
- "package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "easyconf-0.9.0/easyconf-0.9.0.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/easyconf/easyconf@0.9.0"
- },
- {
- "type": "maven",
- "namespace": "org.codehaus.mojo",
- "name": "findbugs-maven-plugin",
- "version": "1.1.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Maven FindBugs PlugIn\nThis Plug-In generates reports based on the FindBugs Library",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Cyrill Ruettimann",
- "email": "mypublicaddress@mac.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Garvin LeClaire",
- "email": "gleclaire@codehaus.org",
- "url": "http://gdleclaire.blogspot.com"
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Detlef Pleiss",
- "email": "d.pleiss@comundus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "CodeHaus",
- "email": null,
- "url": "http://www.codehaus.org"
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "vcs_url": "svn+https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "mit",
- "declared_license_expression_spdx": "MIT",
- "license_detections": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "matches": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "from_file": "maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 3,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "mit_1160.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
- }
- ],
- "identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1"
- },
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.lcds",
- "name": "flex_app",
- "version": "1.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.lcds custom flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n Its architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "fna2_pom/fna2_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.bash",
- "name": "bash_flex_app",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.bash bash bash_flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n\tIts architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.pom",
- "package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "fna_pom_project/fna_pom_project.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0"
- },
- {
- "type": "maven",
- "namespace": "com.myco.foo.bar.baz",
- "name": "baz-bar-parent",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "John Doe",
- "email": "jdoe@myco.com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://github.com/jode/baz-bar-parent/tree/master",
- "vcs_url": "git://github.com/jode/baz-bar-parent.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "epl-1.0",
- "declared_license_expression_spdx": "EPL-1.0",
- "license_detections": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "matches": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 6,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0_4.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
- },
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 8,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
- }
- ],
- "identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.pom",
- "package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "foo-pom/foo-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "gero_pom/gero_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "com.idega.block.addon",
- "name": "com.idega.block.contract",
- "version": "4.1.3-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "idegaWeb Contract Block\nContract",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Tryggvi Larusson",
- "email": "tryggvi@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pall Helgason",
- "email": "palli@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Eirikur Sveinn Hrafnsson",
- "email": "eiki@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Thorhallur Helgason",
- "email": "laddi@idega.is",
- "url": null
- }
- ],
- "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": "cvs+ext:idegaweb@code.idega.com:/idega/cvs:com.idega.block.addon/com.idega.block.contract/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.pom",
- "package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "idega_pom/idega_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "it.assist.jrecordbind",
- "name": "jrecordbind${artifactId.ext}",
- "version": "2.3.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "jrecordbind\nTransform fixed-length and variable-length text files into beans and back",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Federico Fissore",
- "email": "fridrik@dev.java.net",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "https://jrecordbind.dev.java.net/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://jrecordbind.dev.java.net/servlets/ProjectIssues",
- "code_view_url": "https://jrecordbind.dev.java.net/source/browse/jrecordbind/",
- "vcs_url": "svn+https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.0-plus",
- "license_expression_spdx": "LGPL-2.0-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 60.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 60,
- "rule_identifier": "lgpl_bare_single_word.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: LGPL"
- },
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 7,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl_7.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_7.RULE",
- "matched_text": " url: http://www.gnu.org/copyleft/lesser.html"
- }
- ],
- "identifier": "lgpl_2_0_plus_and_lgpl_2_1_plus-99bbf99a-48ea-24c4-e2df-f242abe6446f"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.pom",
- "package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "jrecordbind-2.3.4/jrecordbind-2.3.4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4"
- },
- {
- "type": "maven",
- "namespace": "log4j",
- "name": "log4j",
- "version": "1.2.15",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Log4j\nApache Log4j 1.2",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Apache Software Foundation",
- "email": null,
- "url": "http://www.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://logging.apache.org:80/log4j/1.2/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi/logging/log4j/tags/v1_2_15_rc6",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_15_rc6",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/log4j/log4j-pom.xml",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/log4j/log4j@1.2.15?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/",
- "repository_download_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.jar",
- "api_data_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom",
- "package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "log4j/log4j-pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/log4j/log4j@1.2.15"
- },
- {
- "type": "maven",
- "namespace": "ch.qos.logback",
- "name": "logback-access",
- "version": "0.2.5",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Logback Access Module\nLogback: the generic, reliable, fast and flexible logging library for Java.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://logback.qos.ch/access",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://svn.qos.ch/viewcvs/logback/access/trunk/",
- "vcs_url": "http://svn.qos.ch/repos/logback/access/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/logback-access/logback-access.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 14,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl-2.1-plus_516.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
- "matched_text": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html"
- }
- ],
- "identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/",
- "repository_download_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.pom",
- "package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "logback-access/logback-access.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ch.qos.logback/logback-access@0.2.5"
- },
- {
- "type": "maven",
- "namespace": "org.codehaus.plexus",
- "name": "plexus-interactivity-api",
- "version": "1.0-alpha-4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Plexus Default Interactivity Handler",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pete Kazmier",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Taylor",
- "email": "james@jamestaylor.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Dan Diephouse",
- "email": "dan@envoisolutions.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kasper Nielsen",
- "email": "apache@kav.dk",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "bwalding@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Mark Wilkinson",
- "email": "mhw@kremvax.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Michal Maczka",
- "email": "mmaczka@interia.pl",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Emmanuel Venisse",
- "email": "evenisse@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Trygve Laugstol",
- "email": "trygvis@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kenney Westerhof",
- "email": "kenney@codehaus.org",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Codehaus",
- "email": null,
- "url": "http://www.codehaus.org/"
- }
- ],
- "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": "svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4"
- },
- {
- "type": "maven",
- "namespace": "ur.urwerk.test.modules",
- "name": "main",
- "version": "1.0.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test.modules:main:pom:1.0.0-SNAPSHOT",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "pom-generic/pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "proper-pom/proper_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.modeler",
- "name": "modeler",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.modeler~modeler",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.modeler/modeler@0.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.pom",
- "package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "rel_pom/rel_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.modeler/modeler@0.1"
- },
- {
- "type": "maven",
- "namespace": "no.knowit.seam",
- "name": "root",
- "version": "2.2.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "no.knowit.seam : root : 2.2.0-SNAPSHOT\nThe Seam Maven Reference implementation root POM. \n You can use this POM as a template for your own root pom.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Leif Olsen",
- "email": "loo@knowit.no",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ken Gullaksen",
- "email": "krg@knowit.no",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Know IT Objectnet AS",
- "email": null,
- "url": "http://www.knowit.no/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://code.google.com/p/seam-maven-refimpl/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://code.google.com/p/seam-maven-refimpl/source/browse/#svn/trunk",
- "vcs_url": "svn+http://seam-maven-refimpl.googlecode.com/svn/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.pom",
- "package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "sea_pom/sea_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.specs",
- "name": "specs",
- "version": "1.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Geronimo Specifications\nProvides open-source implementations of Sun specifications.",
- "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": "http://svn.apache.org/viewvc/geronimo/specs/tags/1_3/",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/geronimo/specs/tags/1_3",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom",
- "package_uid": "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "specs-1.3/specs-1.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.apache.geronimo.specs/specs@1.3"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring",
- "version": "2.5.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-2.5.4/spring-2.5.4.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.pom",
- "package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-2.5.4/spring-2.5.4.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring@2.5.4"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-orm",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: ORM",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom",
- "package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-orm-2.5.3/spring-orm-2.5.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring-orm@2.5.3"
- },
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-webmvc",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: Web MVC",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom",
- "package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.springframework/spring-webmvc@2.5.3"
- },
- {
- "type": "maven",
- "namespace": "org.jvnet.hudson.plugins",
- "name": "startup-trigger-plugin",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Startup Trigger",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Ash Lux",
- "email": "ashlux@gmail.com",
- "url": "http://www.ashlux.com/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://wiki.hudson-ci.org/display/HUDSON/Startup+Trigger",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://hudson.dev.java.net/source/browse/hudson/tags/startup-trigger-plugin-0.1",
- "vcs_url": "svn+https://guest@svn.dev.java.net/svn/hudson/tags/startup-trigger-plugin-0.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.pom",
- "package_uid": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1"
- },
- {
- "type": "maven",
- "namespace": "de.fzj.unicore.rcp",
- "name": "eclipseSequencePlugin",
- "version": "0.0.1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Eclipse Sequence 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,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.pom",
- "package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "uni_pom/uni_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "ur.urwerk.test",
- "name": "ur.urwerk.test.module-y",
- "version": "1.0.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test:ur.urwerk.test.module-y:jar:1.0.0",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.pom",
- "package_uid": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "urwerky_pom/urwerky_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0"
- },
- {
- "type": "maven",
- "namespace": "org.webreformatter.wrappers",
- "name": "com.google.gwt.query",
- "version": "0.1.5.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.google.gwt.query",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.pom",
- "package_uid": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "webre_pom/webre_pom.xml"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT"
- },
- {
- "type": "maven",
- "namespace": "au.com.acegi",
- "name": "xml-format-maven-plugin",
- "version": "3.0.6",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "XML Format Maven Plugin\nAutomatically formats XML files in a project.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/acegi/xml-format-maven-plugin/issues",
- "code_view_url": "https://github.com/acegi/xml-format-maven-plugin.git",
- "vcs_url": "git+https://github.com/acegi/xml-format-maven-plugin.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?classifier=sources"
- ],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/",
- "repository_download_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.jar",
- "api_data_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom"
- ],
- "datasource_ids": [
- "maven_pom"
- ],
- "purl": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6"
- }
- ],
- "dependencies": [
- {
- "purl": "pkg:maven/commons-logging/commons-logging-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging-api?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-jms",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-jms?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-pool",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-pool?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.activemq/activemq-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-spring",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.camel/camel-spring?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-test",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-test?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-all",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hamcrest/hamcrest-all?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "activemq-camel/activemq-camel-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.media/jai-core@1.1.2_01",
- "extracted_requirement": "1.1.2_01",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.media/jai-core@1.1.2_01?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jai/jai-codec@1.1.2.1",
- "extracted_requirement": "1.1.2.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jai/jai-codec@1.1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.jcraft/jsch@0.1.29",
- "extracted_requirement": "0.1.29",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.jcraft/jsch@0.1.29?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/servletapi/servletapi@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/oro/oro@2.0.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xml-apis/xml-apis@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.8",
- "extracted_requirement": "1.2.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/log4j/log4j@1.2.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/servletapi/servletapi@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/struts/struts@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/struts/struts@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-configuration/commons-configuration@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-configuration/commons-configuration@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-collections/commons-collections@3.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/dom4j/dom4j@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xerces/xerces@2.2.1",
- "extracted_requirement": "2.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xerces/xerces@2.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xml-apis/xml-apis@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xdoclet/xdoclet@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-jmx@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mx4j/mx4j-jmx@2.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-impl@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mx4j/mx4j-impl@2.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-artifact@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven/maven-artifact@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8",
- "extracted_requirement": "1.0-alpha-8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0",
- "extracted_requirement": "1.2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/info.flex-mojos/testing-support?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit-optional",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit-optional?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex/compiler?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex.framework/flex-framework?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.lcds/fds",
- "extracted_requirement": "${lcds.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.lcds/fds?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna2_pom/fna2_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0",
- "extracted_requirement": "1.0",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex/compiler?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flex.framework/flex-framework?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.cairngorm/cairngorm?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexunit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.adobe.flexunit/flexunit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/info.flex-mojos/testing-support?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "fna_pom_project/fna_pom_project.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo/common-dependencies@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0",
- "extracted_requirement": "1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.myco.foo/common-dependencies@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "foo-pom/foo-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "gero_pom/gero_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.idega.block.platform/com.idega.core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.block.media",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.idega.block.platform/com.idega.block.media?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/itextpdf/itext-paulo",
- "extracted_requirement": "${itextpdf-itext-paulo-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/itextpdf/itext-paulo?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/itext/itext-xml",
- "extracted_requirement": "${itext-itext-xml-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/itext/itext-xml?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "idega_pom/idega_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414",
- "extracted_requirement": "20020414",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.xsom/xsom@20081112",
- "extracted_requirement": "20081112",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.xsom/xsom@20081112?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.mail/mail@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jms/jms@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.sun.jmx/jmxri@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.sun.jmx/jmxri@1.2.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/oro/oro@2.0.8?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "log4j/log4j-pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/ch.qos.logback/logback-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/ch.qos.logback/logback-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/tomcat/catalina",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/tomcat/catalina?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/jetty",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mortbay.jetty/jetty?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.caucho/resin",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.caucho/resin?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/servlet-api-2.5",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mortbay.jetty/servlet-api-2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "logback-access/logback-access.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7",
- "extracted_requirement": "1.0-alpha-7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2",
- "extracted_requirement": "1.1-alpha-2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/plexus/plexus-utils@1.0.2",
- "extracted_requirement": "1.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/plexus/plexus-utils@1.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "proper-pom/proper_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ant/ant@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.6.1",
- "extracted_requirement": "1.6.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/dom4j/dom4j@1.6.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1",
- "extracted_requirement": "3.3.2.Beta1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2",
- "extracted_requirement": "1.4.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4",
- "extracted_requirement": "8.3-603.jdbc4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "rel_pom/rel_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2",
- "extracted_requirement": "3.2.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jboss/jboss-cache@1.4.1.SP9",
- "extracted_requirement": "1.4.1.SP9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jboss/jboss-cache@1.4.1.SP9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA",
- "extracted_requirement": "3.1.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.transaction/jta@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3",
- "extracted_requirement": "1.6.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.drools/drools-core@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.drools/drools-core@5.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4",
- "extracted_requirement": "1.0_02.CR4",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0",
- "extracted_requirement": "3.1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.drools/drools-api@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.drools/drools-api@5.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga",
- "extracted_requirement": "3.3.0.ga",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.antlr/antlr@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.antlr/antlr@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.antlr/antlr-runtime@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.antlr/antlr-runtime@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-digester/commons-digester@1.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.3",
- "extracted_requirement": "2.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-lang/commons-lang@2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.h2database/h2@1.1.118",
- "extracted_requirement": "1.1.118",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.h2database/h2@1.1.118?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/mysql/mysql-connector-java@5.1.10",
- "extracted_requirement": "5.1.10",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/mysql/mysql-connector-java@5.1.10?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.openejb/openejb-core@3.1.2",
- "extracted_requirement": "3.1.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.openejb/openejb-core@3.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@4.7",
- "extracted_requirement": "4.7",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@4.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.testng/testng@5.9",
- "extracted_requirement": "5.9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.testng/testng@5.9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "sea_pom/sea_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "specs-1.3/specs-1.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm-commons@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm-commons@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/asm/asm-util@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/asm/asm-util@2.2.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aspectj/aspectjrt@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aspectj/aspectjrt@1.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aspectj/aspectjweaver@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aspectj/aspectjweaver@1.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0",
- "extracted_requirement": "3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/c3p0/c3p0@0.9.1.2",
- "extracted_requirement": "0.9.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/c3p0/c3p0@0.9.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/cglib/cglib-nodep@2.1_3",
- "extracted_requirement": "2.1_3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/cglib/cglib-nodep@2.1_3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-api@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.2",
- "extracted_requirement": "3.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-collections/commons-collections@3.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2",
- "extracted_requirement": "1.2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.2",
- "extracted_requirement": "1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-fileupload/commons-fileupload@1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-httpclient/commons-httpclient@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-httpclient/commons-httpclient@3.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-pool/commons-pool@1.3",
- "extracted_requirement": "1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-pool/commons-pool@1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.experlog/xapool@1.5.0",
- "extracted_requirement": "1.5.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.experlog/xapool@1.5.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677",
- "extracted_requirement": "2.3.0.677",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.jamonapi/jamon@2.4",
- "extracted_requirement": "2.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.jamonapi/jamon@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.lowagie/itext@2.0.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle.toplink/toplink@10.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/toplink-essentials@2.41?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/oc4j@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/oc4j@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/freemarker/freemarker@2.3.12?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/groovy/groovy@1.5.5",
- "extracted_requirement": "1.5.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/groovy/groovy@1.5.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/hessian/hessian@3.1.3",
- "extracted_requirement": "3.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/hessian/hessian@3.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jasperreports/jasperreports@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jexcelapi/jxl@2.6.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jotm/jotm@2.0.10",
- "extracted_requirement": "2.0.10",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jotm/jotm@2.0.10?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jruby/jruby-bin@1.0.1",
- "extracted_requirement": "1.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jruby/jruby-bin@1.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.15",
- "extracted_requirement": "1.2.15",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/net.sf.ehcache/ehcache@1.4.1",
- "extracted_requirement": "1.4.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/net.sf.ehcache/ehcache@1.4.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.axis/axis@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-api@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-core@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.beanshell/bsh@2.0b4",
- "extracted_requirement": "2.0b4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.beanshell/bsh@2.0b4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate@3.2.6.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga",
- "extracted_requirement": "3.3.2.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/poi/poi@3.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/opensymphony/quartz-all@1.6.0",
- "extracted_requirement": "1.6.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/opensymphony/quartz-all@1.6.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/struts/struts@1.2.9",
- "extracted_requirement": "1.2.9",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/struts/struts@1.2.9?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/taglibs/standard@1.1.2",
- "extracted_requirement": "1.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/taglibs/standard@1.1.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/tomcat/catalina@5.5.23",
- "extracted_requirement": "5.5.23",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/tomcat/catalina@5.5.23?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity/velocity@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-generic@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-view@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.activation/activation@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.activation/activation@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.ejb/ejb@3.0",
- "extracted_requirement": "3.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.ejb/ejb@3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.faces/jsf-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.faces/jsf-api@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jdo/jdo2-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jms/jms@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.mail/mail@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.persistence/persistence-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.portlet/portlet-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.portlet/portlet-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.resource/connector-api@1.5",
- "extracted_requirement": "1.5",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.resource/connector-api@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jsp-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jstl@1.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/servlet-api@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.transaction/jta@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.xml/jaxrpc-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.xml/jaxrpc-api@1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle/toplink-essentials@2.41?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.oracle.toplink/toplink@10.1.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0",
- "extracted_requirement": "2.3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate@3.2.6.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga",
- "extracted_requirement": "3.3.1.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-aop@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-aop@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-beans@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-core@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-jdbc@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-jdbc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-tx@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-tx@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-web@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.jdo/jdo2-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.persistence/persistence-api@1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-api@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/commons-logging/commons-logging@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.lowagie/itext@2.0.7?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/freemarker/freemarker@2.3.12?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jasperreports/jasperreports@2.0.2?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/jexcelapi/jxl@2.6.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-api@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-core@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/poi/poi@3.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity/velocity@1.5?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-generic@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/velocity-tools/velocity-tools-view@1.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-beans@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context-support@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-context-support@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-core@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.springframework/spring-web@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jsp-api@2.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/jstl@1.1.0?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/javax.servlet/servlet-api@2.4?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-all@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mockito/mockito-all@1.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT",
- "extracted_requirement": "2.0.4-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT",
- "extracted_requirement": "0.0.2-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit@3.8.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "uni_pom/uni_pom.xml",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/junit/junit?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.hamcrest/hamcrest-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.mockito/mockito-core?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-plugin-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven/maven-plugin-api?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-utils",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.codehaus.plexus/plexus-utils?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- },
- {
- "purl": "pkg:maven/org.dom4j/dom4j@2.0.1",
- "extracted_requirement": "2.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:maven/org.dom4j/dom4j@2.0.1?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom"
- }
- ],
- "files": [
- {
- "path": "activemq-camel",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.activemq",
- "name": "activemq-camel",
- "version": "5.4.2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ActiveMQ :: Camel\nActiveMQ component for Camel",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-logging/commons-logging-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-jms",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-pool",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-annotation_1.0_spec",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.activemq/activemq-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-core",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.camel/camel-spring",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-test",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-all",
- "extracted_requirement": null,
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/activemq/activemq-camel/5.4.2/activemq-camel-5.4.2.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.activemq/activemq-camel@5.4.2"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "activemq-camel/activemq-camel-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.activemq/activemq-camel@5.4.2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "adarwin",
- "name": "adarwin",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/adarwin/adarwin@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/adarwin/adarwin@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "adarwin-1.0/adarwin-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/adarwin/adarwin@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jai",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "image task and corresponding types.\n jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided\n the download URL is http://java.sun.com/products/java-media/jai/",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.media/jai-core@1.1.2_01",
- "extracted_requirement": "1.1.2_01",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jai/jai-codec@1.1.2.1",
- "extracted_requirement": "1.1.2.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.ant/ant-jai@1.7.0"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jai-1.7.0/ant-jai-1.7.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jai@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.ant",
- "name": "ant-jsch",
- "version": "1.7.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "contains the sshexec and scp tasks\n jsch 0.1.29 might not be available from maven",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.jcraft/jsch@0.1.29",
- "extracted_requirement": "0.1.29",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.ant/ant-jsch@1.7.0"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "ant-jsch-1.7.0/ant-jsch-1.7.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.ant/ant-jsch@1.7.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "aopalliance",
- "name": "aopalliance",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "AOP alliance\nAOP Alliance",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://aopalliance.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": "public-domain AND gpl-1.0-plus",
- "declared_license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "license_detections": [
- {
- "license_expression": "public-domain AND gpl-1.0-plus",
- "license_expression_spdx": "LicenseRef-scancode-public-domain AND GPL-1.0-or-later",
- "matches": [
- {
- "license_expression": "public-domain",
- "license_expression_spdx": "LicenseRef-scancode-public-domain",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 70.0,
- "matched_length": 2,
- "match_coverage": 100.0,
- "rule_relevance": 70,
- "rule_identifier": "public-domain_bare_words.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
- },
- {
- "license_expression": "gpl-1.0-plus",
- "license_expression_spdx": "GPL-1.0-or-later",
- "from_file": "maven2/aopalliance-1.0/aopalliance-1.0.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 50.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 50,
- "rule_identifier": "gpl_bare_word_only.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE",
- "matched_text": "- name: GPL"
- }
- ],
- "identifier": "public_domain_and_gpl_1_0_plus-1122e82b-9e72-f9bb-082b-2717cb5076ed"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n- name: GPL\n url: http://nexb.com\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/aopalliance/aopalliance@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "aopalliance-1.0/aopalliance-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/aopalliance/aopalliance@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "bcel",
- "name": "bcel",
- "version": "5.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/bcel/bcel@5.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/bcel/bcel@5.1"
- }
- ],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "bcel-5.1/bcel-5.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/bcel/bcel@5.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "classworlds",
- "name": "classworlds",
- "version": "1.1-alpha-2",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "classworlds",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "bob mcwhirter",
- "email": "bob@werken.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "ben@walding.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Codehaus",
- "email": null,
- "url": "http://codehaus.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://classworlds.codehaus.org/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://cvs.classworlds.codehaus.org/",
- "vcs_url": "cvs+pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/",
- "repository_download_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar",
- "api_data_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2"
- }
- ],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "classworlds-1.1-alpha2/classworlds-1.1-alpha-2.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/classworlds/classworlds@1.1-alpha-2?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "commons-fileupload",
- "name": "commons-fileupload",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "FileUpload\nThe FileUpload component provides a simple yet flexible means of adding\n support for multipart file upload functionality to servlets and web\n applications.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "dIon Gillard",
- "email": "dion@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "John McNally",
- "email": "jmcnally@collab.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Daniel Rall",
- "email": "dlr@finemaltcoding.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Robert Burrell Donkin",
- "email": "rdonkin@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Sean C. Sullivan",
- "email": "sean |at| seansullivan |dot| com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/fileupload/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://nagoya.apache.org/bugzilla/",
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-fileupload-1.0/commons-fileupload-1.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-fileupload/commons-fileupload@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "commons-validator",
- "name": "commons-validator",
- "version": "1.2.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Validator\nCommons Validator provides the building blocks for both client side validation\n and server side data validation. It may be used standalone or with a framework like\n Struts.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Don Brown",
- "email": "mrdon@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Martin Cooper",
- "email": "martinc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Graham",
- "email": "dgraham@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ted Husted",
- "email": "husted@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Rob Leland",
- "email": "rleland at apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Craig McClanahan",
- "email": "craigmcc@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Mitchell",
- "email": "jmitchell NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Niall Pemberton",
- "email": "niallp NOSPAM apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Turner",
- "email": "turner@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "David Winterfeldt",
- "email": "dwinterfeldt@apache.org",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Saul Q Yuan Add",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Shane Bailey",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Dave Derry",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Tim O'Brien",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Scott Clasen",
- "email": "ticktock@speakeasy.net>",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Marcus Brito Finish",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Padma Ginnaram",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Thomas Jacob",
- "email": "thomas.jacob@sinnerschrader.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Adam Kramer",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Greg Ludington",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Bjorn-H. Moritz",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "David Neuer",
- "email": "DavidNeuer@nascopgh.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Kurt Post",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Arun Mammen Thomas",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steven Fines",
- "email": "steven.fines@cotelligent.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Didier Romelot",
- "email": "didier.romelot@renault.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Steve Stair",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Jeremy Tan",
- "email": "jeremytan@scualum.com",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "94RGt2",
- "email": "lmagee@biziworks.com.au",
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Nacho G. Mac Dowell",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Mark Lowe",
- "email": "mark.lowe@boxstuff.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "The Apache Software Foundation",
- "email": null,
- "url": "http://jakarta.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://jakarta.apache.org/commons/validator/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/commons-validator-1.2.0/commons-validator-1.2.0.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 11,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_1321.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1321.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt"
- }
- ],
- "identifier": "apache_2_0-0e1a671d-e78a-851c-343d-1420e4bbc821"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: /LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/commons-validator/commons-validator@1.2.0"
- }
- ],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "commons-validator-1.2.0/commons-validator-1.2.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/commons-validator/commons-validator@1.2.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.dbwebx",
- "name": "tools",
- "version": "0.0.1.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.dbwebx::tools",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "${vendor.url}",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/dbwebx/tools/0.0.1.SNAPSHOT/tools-0.0.1.SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "dbwebx_pom/dbwebx_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.dbwebx/tools@0.0.1.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "easyconf",
- "name": "easyconf",
- "version": "0.9.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Easyconf library\nEasyConf is a library to access configuration of software components and applications. \n It defines simple conventions to make it easier to use. It was born in a portlets-based \n portal and has several features useful for this and similar environments.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jorge Ferrer",
- "email": "jferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Jes\u00fas Jaimez",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ismael Ferrer",
- "email": "iferrer germinus.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "\u00c3?lvaro Gonz\u00c3\u00a1lez",
- "email": "agonzalez germinus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "EasyConf team",
- "email": null,
- "url": "http://www.sourceforge.net/projects/easyconf"
- }
- ],
- "keywords": [],
- "homepage_url": "http://easyconf.sourceforge.net",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://sourceforge.net/tracker/?group_id=131552&atid=721404",
- "code_view_url": "http://cvs.sourceforge.net/viewcvs.py/easyconf/",
- "vcs_url": "cvs+pserver:anonymous@cvs.sourceforge.net:/cvsroot/easyconf:easyconf",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/log4j/log4j@1.2.8",
- "extracted_requirement": "1.2.8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/servletapi/servletapi@2.3",
- "extracted_requirement": "2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/struts/struts@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-configuration/commons-configuration@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.0.4",
- "extracted_requirement": "1.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.6",
- "extracted_requirement": "1.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xerces/xerces@2.2.1",
- "extracted_requirement": "2.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xml-apis/xml-apis@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-jmx@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mx4j/mx4j-impl@2.1.1",
- "extracted_requirement": "2.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/easyconf/easyconf@0.9.0"
- }
- ],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "easyconf-0.9.0/easyconf-0.9.0.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/easyconf/easyconf@0.9.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.codehaus.mojo",
- "name": "findbugs-maven-plugin",
- "version": "1.1.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Maven FindBugs PlugIn\nThis Plug-In generates reports based on the FindBugs Library",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Cyrill Ruettimann",
- "email": "mypublicaddress@mac.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Garvin LeClaire",
- "email": "gleclaire@codehaus.org",
- "url": "http://gdleclaire.blogspot.com"
- },
- {
- "type": "person",
- "role": "contributor",
- "name": "Detlef Pleiss",
- "email": "d.pleiss@comundus.com",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "CodeHaus",
- "email": null,
- "url": "http://www.codehaus.org"
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "vcs_url": "svn+https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "mit",
- "declared_license_expression_spdx": "MIT",
- "license_detections": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "matches": [
- {
- "license_expression": "mit",
- "license_expression_spdx": "MIT",
- "from_file": "maven2/findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 3,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "mit_1160.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_1160.RULE",
- "matched_text": "license - name: MIT"
- }
- ],
- "identifier": "mit-d9e3f4a1-d310-01d5-c705-8088549acd7c"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: MIT\n url: LICENSE.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.maven/maven-artifact@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4",
- "extracted_requirement": "2.0.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8",
- "extracted_requirement": "1.0-alpha-8",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0",
- "extracted_requirement": "1.2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "findbugs-maven-plugin-1.1.1/findbugs-maven-plugin-1.1.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.lcds",
- "name": "flex_app",
- "version": "1.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.lcds custom flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n Its architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit-optional",
- "extracted_requirement": "${flexUnit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/blazeds_service_config@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_remoted_objects@1.0-SNAPSHOT",
- "extracted_requirement": "1.0-SNAPSHOT",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm-enterprise",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.lcds/fds",
- "extracted_requirement": "${lcds.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/lcds/flex_app/1.0-SNAPSHOT/flex_app-1.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna2_pom/fna2_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.lcds/flex_app@1.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.adobe.ac.samples.bash",
- "name": "bash_flex_app",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.adobe.ac.samples.bash bash bash_flex_app\nThis project hold the flex (blazeds enabled) flex front-end.\n\tIts architecture is based on adobe consulting mvn framework: cairngorm.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_blazeds_service_config@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_remoted_objects@1.0",
- "extracted_requirement": "1.0",
- "scope": "internal",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex/compiler",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flex.framework/flex-framework",
- "extracted_requirement": "${flex.sdk.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.cairngorm/cairngorm",
- "extracted_requirement": "${cairngorm.version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.adobe.flexunit/flexunit",
- "extracted_requirement": "${flexunit.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/info.flex-mojos/testing-support",
- "extracted_requirement": "${flex-mojos.version}",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/adobe/ac/samples/bash/bash_flex_app/1.0/bash_flex_app-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "fna_pom_project/fna_pom_project.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.adobe.ac.samples.bash/bash_flex_app@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.myco.foo.bar.baz",
- "name": "baz-bar-parent",
- "version": "1.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": null,
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "John Doe",
- "email": "jdoe@myco.com",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://github.com/jode/baz-bar-parent/tree/master",
- "vcs_url": "git://github.com/jode/baz-bar-parent.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "epl-1.0",
- "declared_license_expression_spdx": "EPL-1.0",
- "license_detections": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "matches": [
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 6,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0_4.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0_4.RULE",
- "matched_text": "- name: Eclipse Public License - v 1.0"
- },
- {
- "license_expression": "epl-1.0",
- "license_expression_spdx": "EPL-1.0",
- "from_file": "maven2/foo-pom/foo-pom.xml",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 8,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "epl-1.0.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-1.0.RULE",
- "matched_text": " url: http://www.eclipse.org/legal/epl-v10.html"
- }
- ],
- "identifier": "epl_1_0-48d15cd3-0ccf-4f62-3d30-24dc9b7308e5"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: Eclipse Public License - v 1.0\n url: http://www.eclipse.org/legal/epl-v10.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "import",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar@1.0",
- "extracted_requirement": "1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.myco.foo/common-dependencies@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-dependencies@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.4.2.RELEASE",
- "extracted_requirement": "1.4.2.RELEASE",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework.cloud/spring-cloud-dependencies@Camden.SR5",
- "extracted_requirement": "Camden.SR5",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/myco/foo/bar/baz/baz-bar-parent/1.0/baz-bar-parent-1.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0"
- }
- ],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "foo-pom/foo-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.myco.foo.bar.baz/baz-bar-parent@1.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "gero_pom/gero_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "com.idega.block.addon",
- "name": "com.idega.block.contract",
- "version": "4.1.3-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "idegaWeb Contract Block\nContract",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Tryggvi Larusson",
- "email": "tryggvi@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pall Helgason",
- "email": "palli@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Eirikur Sveinn Hrafnsson",
- "email": "eiki@idega.is",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Thorhallur Helgason",
- "email": "laddi@idega.is",
- "url": null
- }
- ],
- "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": "cvs+ext:idegaweb@code.idega.com:/idega/cvs:com.idega.block.addon/com.idega.block.contract/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.idega.block.platform/com.idega.block.media",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/itextpdf/itext-paulo",
- "extracted_requirement": "${itextpdf-itext-paulo-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/itext/itext-xml",
- "extracted_requirement": "${itext-itext-xml-version}",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/com/idega/block/addon/com.idega.block.contract/4.1.3-SNAPSHOT/com.idega.block.contract-4.1.3-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "idega_pom/idega_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/com.idega.block.addon/com.idega.block.contract@4.1.3-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "it.assist.jrecordbind",
- "name": "jrecordbind${artifactId.ext}",
- "version": "2.3.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "jrecordbind\nTransform fixed-length and variable-length text files into beans and back",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Federico Fissore",
- "email": "fridrik@dev.java.net",
- "url": null
- }
- ],
- "keywords": [],
- "homepage_url": "https://jrecordbind.dev.java.net/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://jrecordbind.dev.java.net/servlets/ProjectIssues",
- "code_view_url": "https://jrecordbind.dev.java.net/source/browse/jrecordbind/",
- "vcs_url": "svn+https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.0-or-later AND LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.0-plus",
- "license_expression_spdx": "LGPL-2.0-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 1,
- "end_line": 1,
- "matcher": "2-aho",
- "score": 60.0,
- "matched_length": 1,
- "match_coverage": 100.0,
- "rule_relevance": 60,
- "rule_identifier": "lgpl_bare_single_word.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE",
- "matched_text": "- name: LGPL"
- },
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/jrecordbind-2.3.4/jrecordbind-2.3.4.pom",
- "start_line": 2,
- "end_line": 2,
- "matcher": "2-aho",
- "score": 100.0,
- "matched_length": 7,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl_7.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_7.RULE",
- "matched_text": " url: http://www.gnu.org/copyleft/lesser.html"
- }
- ],
- "identifier": "lgpl_2_0_plus_and_lgpl_2_1_plus-99bbf99a-48ea-24c4-e2df-f242abe6446f"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: LGPL\n url: http://www.gnu.org/copyleft/lesser.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414",
- "extracted_requirement": "20020414",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11",
- "extracted_requirement": "2.1.11",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.xsom/xsom@20081112",
- "extracted_requirement": "20081112",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4"
- }
- ],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "jrecordbind-2.3.4/jrecordbind-2.3.4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "log4j",
- "name": "log4j",
- "version": "1.2.15",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Log4j\nApache Log4j 1.2",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Apache Software Foundation",
- "email": null,
- "url": "http://www.apache.org"
- }
- ],
- "keywords": [],
- "homepage_url": "http://logging.apache.org:80/log4j/1.2/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "http://issues.apache.org/bugzilla/",
- "code_view_url": "http://svn.apache.org/viewcvs.cgi/logging/log4j/tags/v1_2_15_rc6",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_15_rc6",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/log4j/log4j-pom.xml",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/log4j/log4j@1.2.15?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.jdmk/jmxtools@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.sun.jmx/jmxri@1.2.1",
- "extracted_requirement": "1.2.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/oro/oro@2.0.8",
- "extracted_requirement": "2.0.8",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/",
- "repository_download_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.jar",
- "api_data_url": "https://repo1.maven.org/maven2/log4j/log4j/1.2.15/log4j-1.2.15.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/log4j/log4j@1.2.15"
- }
- ],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "log4j/log4j-pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/log4j/log4j@1.2.15?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "ch.qos.logback",
- "name": "logback-access",
- "version": "0.2.5",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Logback Access Module\nLogback: the generic, reliable, fast and flexible logging library for Java.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": "http://logback.qos.ch/access",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://svn.qos.ch/viewcvs/logback/access/trunk/",
- "vcs_url": "http://svn.qos.ch/repos/logback/access/trunk/",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "lgpl-2.1-plus",
- "declared_license_expression_spdx": "LGPL-2.1-or-later",
- "license_detections": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "matches": [
- {
- "license_expression": "lgpl-2.1-plus",
- "license_expression_spdx": "LGPL-2.1-or-later",
- "from_file": "maven2/logback-access/logback-access.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 14,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "lgpl-2.1-plus_516.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_516.RULE",
- "matched_text": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html"
- }
- ],
- "identifier": "lgpl_2_1_plus-9369f890-91fd-5ab9-8ca6-c212a4144ff3"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: GNU Lesser General Public License\n url: http://www.gnu.org/licenses/lgpl.html\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/ch.qos.logback/logback-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/tomcat/catalina",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/jetty",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.caucho/resin",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mortbay.jetty/servlet-api-2.5",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/",
- "repository_download_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ch.qos.logback/logback-access@0.2.5"
- }
- ],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "logback-access/logback-access.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ch.qos.logback/logback-access@0.2.5?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.codehaus.plexus",
- "name": "plexus-interactivity-api",
- "version": "1.0-alpha-4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Plexus Default Interactivity Handler",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Jason van Zyl",
- "email": "jason@zenplex.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Pete Kazmier",
- "email": null,
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "James Taylor",
- "email": "james@jamestaylor.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Dan Diephouse",
- "email": "dan@envoisolutions.com",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kasper Nielsen",
- "email": "apache@kav.dk",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ben Walding",
- "email": "bwalding@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Mark Wilkinson",
- "email": "mhw@kremvax.net",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Michal Maczka",
- "email": "mmaczka@interia.pl",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Emmanuel Venisse",
- "email": "evenisse@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Trygve Laugstol",
- "email": "trygvis@codehaus.org",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Kenney Westerhof",
- "email": "kenney@codehaus.org",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Codehaus",
- "email": null,
- "url": "http://www.codehaus.org/"
- }
- ],
- "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": "svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7",
- "extracted_requirement": "1.0-alpha-7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2",
- "extracted_requirement": "1.1-alpha-2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/plexus/plexus-utils@1.0.2",
- "extracted_requirement": "1.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4"
- }
- ],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "plexus-interactivity-api-1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "ur.urwerk.test.modules",
- "name": "main",
- "version": "1.0.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test.modules:main:pom:1.0.0-SNAPSHOT",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "pom-generic/pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.bundles",
- "name": "axis",
- "version": "1.4_1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Apache Geronimo Bundles: axis-1.4\nThis bundle simply wraps axis-1.4.jar.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/bundles/axis/1.4_1-SNAPSHOT/axis-1.4_1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "proper-pom/proper_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.bundles/axis@1.4_1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.modeler",
- "name": "modeler",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "org.modeler~modeler",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.modeler/modeler@0.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.apache.ant/ant@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@2.0",
- "extracted_requirement": "2.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/dom4j/dom4j@1.6.1",
- "extracted_requirement": "1.6.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-annotations@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.4.0.GA",
- "extracted_requirement": "3.4.0.GA",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/ejb3-persistence@3.3.2.Beta1",
- "extracted_requirement": "3.3.2.Beta1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.slf4j/slf4j-jcl@1.4.2",
- "extracted_requirement": "1.4.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/postgresql/postgresql@8.3-603.jdbc4",
- "extracted_requirement": "8.3-603.jdbc4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/modeler/modeler/0.1/modeler-0.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.modeler/modeler@0.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "rel_pom/rel_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.modeler/modeler@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "no.knowit.seam",
- "name": "root",
- "version": "2.2.0-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "no.knowit.seam : root : 2.2.0-SNAPSHOT\nThe Seam Maven Reference implementation root POM. \n You can use this POM as a template for your own root pom.",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Leif Olsen",
- "email": "loo@knowit.no",
- "url": null
- },
- {
- "type": "person",
- "role": "developer",
- "name": "Ken Gullaksen",
- "email": "krg@knowit.no",
- "url": null
- },
- {
- "type": "organization",
- "role": "owner",
- "name": "Know IT Objectnet AS",
- "email": null,
- "url": "http://www.knowit.no/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://code.google.com/p/seam-maven-refimpl/",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://code.google.com/p/seam-maven-refimpl/source/browse/#svn/trunk",
- "vcs_url": "svn+http://seam-maven-refimpl.googlecode.com/svn/trunk",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ioc@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-mail@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-pdf@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-remoting@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-resteasy@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-ui@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-debug@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-excel@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.seam/jboss-seam-jul@2.2.0.GA",
- "extracted_requirement": "2.2.0.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-api@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.framework/richfaces-impl@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.ui/richfaces-ui@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jbpm/jbpm-jpdl@3.2.2",
- "extracted_requirement": "3.2.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jboss/jboss-cache@1.4.1.SP9",
- "extracted_requirement": "1.4.1.SP9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@1.1-RC2",
- "extracted_requirement": "1.1-RC2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-core@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-search@3.1.1.GA",
- "extracted_requirement": "3.1.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.codehaus.groovy/groovy-all@1.6.3",
- "extracted_requirement": "1.6.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.drools/drools-core@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.jboss.el/jboss-el@1.0_02.CR4",
- "extracted_requirement": "1.0_02.CR4",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.tuckey/urlrewritefilter@3.1.0",
- "extracted_requirement": "3.1.0",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/glassX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.richfaces.samples/darkX@3.3.1.GA",
- "extracted_requirement": "3.3.1.GA",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.drools/drools-api@5.0.1",
- "extracted_requirement": "5.0.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-commons-annotations@3.3.0.ga",
- "extracted_requirement": "3.3.0.ga",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.antlr/antlr@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.antlr/antlr-runtime@3.2",
- "extracted_requirement": "3.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-digester/commons-digester@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-lang/commons-lang@2.3",
- "extracted_requirement": "2.3",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.h2database/h2@1.1.118",
- "extracted_requirement": "1.1.118",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/mysql/mysql-connector-java@5.1.10",
- "extracted_requirement": "5.1.10",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.openejb/openejb-core@3.1.2",
- "extracted_requirement": "3.1.2",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@4.7",
- "extracted_requirement": "4.7",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.testng/testng@5.9",
- "extracted_requirement": "5.9",
- "scope": "dependencymanagement",
- "is_runtime": false,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/no/knowit/seam/root/2.2.0-SNAPSHOT/root-2.2.0-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "sea_pom/sea_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/no.knowit.seam/root@2.2.0-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.apache.geronimo.specs",
- "name": "specs",
- "version": "1.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Geronimo Specifications\nProvides open-source implementations of Sun specifications.",
- "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": "http://svn.apache.org/viewvc/geronimo/specs/tags/1_3/",
- "vcs_url": "svn+http://svn.apache.org/repos/asf/geronimo/specs/tags/1_3",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.apache.geronimo.specs/specs@1.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "specs-1.3/specs-1.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.apache.geronimo.specs/specs@1.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring",
- "version": "2.5.4",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-2.5.4/spring-2.5.4.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm-commons@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/asm/asm-util@2.2.3",
- "extracted_requirement": "2.2.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/aspectj/aspectjrt@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/aspectj/aspectjweaver@1.5.4",
- "extracted_requirement": "1.5.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0",
- "extracted_requirement": "3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/c3p0/c3p0@0.9.1.2",
- "extracted_requirement": "0.9.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/cglib/cglib-nodep@2.1_3",
- "extracted_requirement": "2.1_3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0",
- "extracted_requirement": "1.7.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-collections/commons-collections@3.2",
- "extracted_requirement": "3.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2",
- "extracted_requirement": "1.2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.2",
- "extracted_requirement": "1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-httpclient/commons-httpclient@3.1",
- "extracted_requirement": "3.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-pool/commons-pool@1.3",
- "extracted_requirement": "1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1",
- "extracted_requirement": "1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.experlog/xapool@1.5.0",
- "extracted_requirement": "1.5.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677",
- "extracted_requirement": "2.3.0.677",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.jamonapi/jamon@2.4",
- "extracted_requirement": "2.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/oc4j@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/groovy/groovy@1.5.5",
- "extracted_requirement": "1.5.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/hessian/hessian@3.1.3",
- "extracted_requirement": "3.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jotm/jotm@2.0.10",
- "extracted_requirement": "2.0.10",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jruby/jruby-bin@1.0.1",
- "extracted_requirement": "1.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/log4j/log4j@1.2.15",
- "extracted_requirement": "1.2.15",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/net.sf.ehcache/ehcache@1.4.1",
- "extracted_requirement": "1.4.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.axis/axis@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.beanshell/bsh@2.0b4",
- "extracted_requirement": "2.0b4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga",
- "extracted_requirement": "3.3.2.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/opensymphony/quartz-all@1.6.0",
- "extracted_requirement": "1.6.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/struts/struts@1.2.9",
- "extracted_requirement": "1.2.9",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/taglibs/standard@1.1.2",
- "extracted_requirement": "1.1.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/tomcat/catalina@5.5.23",
- "extracted_requirement": "5.5.23",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.activation/activation@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.ejb/ejb@3.0",
- "extracted_requirement": "3.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.faces/jsf-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jms/jms@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.mail/mail@1.4",
- "extracted_requirement": "1.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.portlet/portlet-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.resource/connector-api@1.5",
- "extracted_requirement": "1.5",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.transaction/jta@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.xml/jaxrpc-api@1.1",
- "extracted_requirement": "1.1",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring@2.5.4"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-2.5.4/spring-2.5.4.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring@2.5.4?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-orm",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: ORM",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-orm-2.5.3/spring-orm-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/aopalliance/aopalliance@1.0",
- "extracted_requirement": "1.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle/toplink-essentials@2.41",
- "extracted_requirement": "2.41",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3",
- "extracted_requirement": "10.1.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0",
- "extracted_requirement": "2.3.0",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga",
- "extracted_requirement": "3.2.6.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga",
- "extracted_requirement": "3.3.1.ga",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-aop@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-jdbc@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-tx@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.jdo/jdo2-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.persistence/persistence-api@1.0",
- "extracted_requirement": "1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring-orm@2.5.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-orm-2.5.3/spring-orm-2.5.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-orm@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.springframework",
- "name": "spring-webmvc",
- "version": "2.5.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Spring Framework: Web MVC",
- "release_date": null,
- "parties": [
- {
- "type": "organization",
- "role": "owner",
- "name": "Spring Framework",
- "email": null,
- "url": "http://www.springframework.org/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://www.springframework.org",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/",
- "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring",
- "copyright": null,
- "holder": null,
- "declared_license_expression": "apache-2.0",
- "declared_license_expression_spdx": "Apache-2.0",
- "license_detections": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "matches": [
- {
- "license_expression": "apache-2.0",
- "license_expression_spdx": "Apache-2.0",
- "from_file": "maven2/spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom",
- "start_line": 1,
- "end_line": 2,
- "matcher": "1-hash",
- "score": 100.0,
- "matched_length": 18,
- "match_coverage": 100.0,
- "rule_relevance": 100,
- "rule_identifier": "apache-2.0_40.RULE",
- "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_40.RULE",
- "matched_text": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
- }
- ],
- "identifier": "apache_2_0-bfa9e97a-62d3-0076-c881-8443e5e95192"
- }
- ],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": "- name: The Apache Software License, Version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2",
- "extracted_requirement": "2.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/commons-logging/commons-logging@1.1.1",
- "extracted_requirement": "1.1.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.lowagie/itext@2.0.7",
- "extracted_requirement": "2.0.7",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/freemarker/freemarker@2.3.12",
- "extracted_requirement": "2.3.12",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jasperreports/jasperreports@2.0.2",
- "extracted_requirement": "2.0.2",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/jexcelapi/jxl@2.6.6",
- "extracted_requirement": "2.6.6",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5",
- "extracted_requirement": "2.0.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/poi/poi@3.0.1",
- "extracted_requirement": "3.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity/velocity@1.5",
- "extracted_requirement": "1.5",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4",
- "extracted_requirement": "1.4",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-beans@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-context-support@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-core@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.springframework/spring-web@2.5.3",
- "extracted_requirement": "2.5.3",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jsp-api@2.0",
- "extracted_requirement": "2.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/jstl@1.1.0",
- "extracted_requirement": "1.1.0",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/javax.servlet/servlet-api@2.4",
- "extracted_requirement": "2.4",
- "scope": "provided",
- "is_runtime": true,
- "is_optional": false,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.springframework/spring-webmvc@2.5.3"
- }
- ],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "spring-webmvc-2.5.3/spring-webmvc-2.5.3.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.springframework/spring-webmvc@2.5.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.jvnet.hudson.plugins",
- "name": "startup-trigger-plugin",
- "version": "0.1",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Startup Trigger",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "developer",
- "name": "Ash Lux",
- "email": "ashlux@gmail.com",
- "url": "http://www.ashlux.com/"
- }
- ],
- "keywords": [],
- "homepage_url": "http://wiki.hudson-ci.org/display/HUDSON/Startup+Trigger",
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": "https://hudson.dev.java.net/source/browse/hudson/tags/startup-trigger-plugin-0.1",
- "vcs_url": "svn+https://guest@svn.dev.java.net/svn/hudson/tags/startup-trigger-plugin-0.1",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/org.mockito/mockito-all@1.8.1",
- "extracted_requirement": "1.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1"
- }
- ],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "startup-trigger-plugin-0.1/startup-trigger-plugin-0.1.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "de.fzj.unicore.rcp",
- "name": "eclipseSequencePlugin",
- "version": "0.0.1-SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "Eclipse Sequence 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,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-clients-all@2.0.4-SNAPSHOT",
- "extracted_requirement": "2.0.4-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbean-api@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe/gpe-utils@2.0.5-SNAPSHOT",
- "extracted_requirement": "2.0.5-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/com.intel.gpe.clients/gpe-gridbeans-swt@0.0.2-SNAPSHOT",
- "extracted_requirement": "0.0.2-SNAPSHOT",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/junit/junit@3.8.1",
- "extracted_requirement": "3.8.1",
- "scope": "test",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/de/fzj/unicore/rcp/eclipseSequencePlugin/0.0.1-SNAPSHOT/eclipseSequencePlugin-0.0.1-SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "uni_pom/uni_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/de.fzj.unicore.rcp/eclipseSequencePlugin@0.0.1-SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "ur.urwerk.test",
- "name": "ur.urwerk.test.module-y",
- "version": "1.0.0",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "ur.urwerk.test:ur.urwerk.test.module-y:jar:1.0.0",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/",
- "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.jar",
- "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/ur.urwerk.test.module-y/1.0.0/ur.urwerk.test.module-y-1.0.0.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0"
- }
- ],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "urwerky_pom/urwerky_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/ur.urwerk.test/ur.urwerk.test.module-y@1.0.0?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom/webre_pom.xml",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "org.webreformatter.wrappers",
- "name": "com.google.gwt.query",
- "version": "0.1.5.SNAPSHOT",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "com.google.gwt.query",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": null,
- "code_view_url": null,
- "vcs_url": null,
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [],
- "repository_homepage_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/",
- "repository_download_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.jar",
- "api_data_url": "https://repo1.maven.org/maven2/org/webreformatter/wrappers/com.google.gwt.query/0.1.5.SNAPSHOT/com.google.gwt.query-0.1.5.SNAPSHOT.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT"
- }
- ],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom/webre_pom.xml.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "webre_pom/webre_pom.xml.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/org.webreformatter.wrappers/com.google.gwt.query@0.1.5.SNAPSHOT?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6",
- "type": "directory",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "type": "file",
- "package_data": [
- {
- "type": "maven",
- "namespace": "au.com.acegi",
- "name": "xml-format-maven-plugin",
- "version": "3.0.6",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "Java",
- "description": "XML Format Maven Plugin\nAutomatically formats XML files in a project.",
- "release_date": null,
- "parties": [],
- "keywords": [],
- "homepage_url": null,
- "download_url": null,
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/acegi/xml-format-maven-plugin/issues",
- "code_view_url": "https://github.com/acegi/xml-format-maven-plugin.git",
- "vcs_url": "git+https://github.com/acegi/xml-format-maven-plugin.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?classifier=sources"
- ],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:maven/junit/junit",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.hamcrest/hamcrest-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.mockito/mockito-core",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven/maven-plugin-api",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.codehaus.plexus/plexus-utils",
- "extracted_requirement": null,
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:maven/org.dom4j/dom4j@2.0.1",
- "extracted_requirement": "2.0.1",
- "scope": "compile",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": true,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/",
- "repository_download_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.jar",
- "api_data_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.pom",
- "datasource_id": "maven_pom",
- "purl": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6"
- }
- ],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- },
- {
- "path": "xml-format-maven-plugin-3.0.6/xml-format-maven-plugin-3.0.6.pom.package.json",
- "type": "file",
- "package_data": [],
- "for_packages": [
- "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- }
- ]
-}
\ No newline at end of file
diff --git a/tests/packagedcode/data/plugin/maven/pom.xml b/tests/packagedcode/data/plugin/maven/pom.xml
new file mode 100644
index 0000000000..792d0bb2ee
--- /dev/null
+++ b/tests/packagedcode/data/plugin/maven/pom.xml
@@ -0,0 +1,103 @@
+
+
+
+
+ 4.0.0
+
+
+ org.apache.geronimo.framework
+ framework
+ 3.0-SNAPSHOT
+ ../../pom.xml
+
+
+ org.apache.geronimo.bundles
+ axis
+ 1.4_1-SNAPSHOT
+ bundle
+ Apache Geronimo Bundles: ${pkgArtifactId}-${pkgVersion}
+
+ This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+
+
+
+ HSQLDB License
+ http://hsqldb.org/web/hsqlLicense.html
+ repo
+
+
+
+ org.apache.axis
+ axis
+ 1.4
+
+
+
+ ${pkgGroupId}
+ ${pkgArtifactId}
+ ${pkgVersion}
+ true
+
+
+ axis
+ axis-jaxrpc
+
+
+ axis
+ axis-saaj
+
+
+ axis
+ axis-wsdl4j
+
+
+ commons-discovery
+ commons-discovery
+
+
+ commons-logging
+ commons-logging
+
+
+
+
+
+
+
+
+ org.apache.felix
+ maven-bundle-plugin
+
+
+ org.apache.axis*;version="1.4"
+
+ com.sun*;resolution:=optional,
+ sun*;resolution:=optional,
+ org.apache.bsf*;resolution:=optional,
+ org.apache.commons.httpclient*;resolution:=optional,
+ org.apache.commons.net*;resolution:=optional,
+ *
+
+
+
+
+
+
+
diff --git a/tests/packagedcode/data/plugin/npm-package-with-license-expected.json b/tests/packagedcode/data/plugin/npm-package-with-license-expected.json
deleted file mode 100644
index 9e8b00ea8f..0000000000
--- a/tests/packagedcode/data/plugin/npm-package-with-license-expected.json
+++ /dev/null
@@ -1,187 +0,0 @@
-{
- "packages": [
- {
- "type": "npm",
- "namespace": null,
- "name": "cookie-signature",
- "version": "1.0.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "JavaScript",
- "description": "Sign and unsign cookies",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "author",
- "name": "TJ Holowaychuk",
- "email": "tj@learnboost.com",
- "url": null
- }
- ],
- "keywords": [
- "cookie",
- "sign",
- "unsign"
- ],
- "homepage_url": null,
- "download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz",
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/visionmedia/node-cookie-signature/issues",
- "code_view_url": null,
- "vcs_url": "git+https://github.com/visionmedia/node-cookie-signature.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "repository_homepage_url": "https://www.npmjs.com/package/cookie-signature",
- "repository_download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz",
- "api_data_url": "https://registry.npmjs.org/cookie-signature/1.0.3",
- "package_uid": "pkg:npm/cookie-signature@1.0.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_paths": [
- "package.json"
- ],
- "datasource_ids": [
- "npm_package_json"
- ],
- "purl": "pkg:npm/cookie-signature@1.0.3"
- }
- ],
- "dependencies": [
- {
- "purl": "pkg:npm/mocha",
- "extracted_requirement": "*",
- "scope": "devDependencies",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:npm/mocha?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:npm/cookie-signature@1.0.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "package.json",
- "datasource_id": "npm_package_json"
- },
- {
- "purl": "pkg:npm/should",
- "extracted_requirement": "*",
- "scope": "devDependencies",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {},
- "dependency_uid": "pkg:npm/should?uuid=fixed-uid-done-for-testing-5642512d1758",
- "for_package_uid": "pkg:npm/cookie-signature@1.0.3?uuid=fixed-uid-done-for-testing-5642512d1758",
- "datafile_path": "package.json",
- "datasource_id": "npm_package_json"
- }
- ],
- "files": [
- {
- "path": "package.json",
- "type": "file",
- "package_data": [
- {
- "type": "npm",
- "namespace": null,
- "name": "cookie-signature",
- "version": "1.0.3",
- "qualifiers": {},
- "subpath": null,
- "primary_language": "JavaScript",
- "description": "Sign and unsign cookies",
- "release_date": null,
- "parties": [
- {
- "type": "person",
- "role": "author",
- "name": "TJ Holowaychuk",
- "email": "tj@learnboost.com",
- "url": null
- }
- ],
- "keywords": [
- "cookie",
- "sign",
- "unsign"
- ],
- "homepage_url": null,
- "download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz",
- "size": null,
- "sha1": null,
- "md5": null,
- "sha256": null,
- "sha512": null,
- "bug_tracking_url": "https://github.com/visionmedia/node-cookie-signature/issues",
- "code_view_url": null,
- "vcs_url": "git+https://github.com/visionmedia/node-cookie-signature.git",
- "copyright": null,
- "holder": null,
- "declared_license_expression": null,
- "declared_license_expression_spdx": null,
- "license_detections": [],
- "other_license_expression": null,
- "other_license_expression_spdx": null,
- "other_license_detections": [],
- "extracted_license_statement": null,
- "notice_text": null,
- "source_packages": [],
- "file_references": [],
- "is_private": false,
- "is_virtual": false,
- "extra_data": {},
- "dependencies": [
- {
- "purl": "pkg:npm/mocha",
- "extracted_requirement": "*",
- "scope": "devDependencies",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- },
- {
- "purl": "pkg:npm/should",
- "extracted_requirement": "*",
- "scope": "devDependencies",
- "is_runtime": false,
- "is_optional": true,
- "is_pinned": false,
- "is_direct": true,
- "resolved_package": {},
- "extra_data": {}
- }
- ],
- "repository_homepage_url": "https://www.npmjs.com/package/cookie-signature",
- "repository_download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz",
- "api_data_url": "https://registry.npmjs.org/cookie-signature/1.0.3",
- "datasource_id": "npm_package_json",
- "purl": "pkg:npm/cookie-signature@1.0.3"
- }
- ],
- "for_packages": [
- "pkg:npm/cookie-signature@1.0.3?uuid=fixed-uid-done-for-testing-5642512d1758"
- ],
- "scan_errors": []
- }
- ]
-}
\ No newline at end of file
diff --git a/tests/packagedcode/test_maven.py b/tests/packagedcode/test_maven.py
index 1f1c647dbd..0ce3511391 100644
--- a/tests/packagedcode/test_maven.py
+++ b/tests/packagedcode/test_maven.py
@@ -429,19 +429,121 @@ def test_parse_will_load_extra_pom_properties_if_file_present(self):
assert pom.namespace == 'org.activiti'
-class TestMavenComputeNormalizedLicense(testcase.FileBasedTesting):
+class TestMavenGetLicenseDetections(testcase.FileBasedTesting):
test_data_dir = os.path.join(os.path.dirname(__file__), 'data')
- def test_get_license_detections_two_names_only(self):
- declared_license = [
- {'name': 'apache-2.0'},
- {'name': 'mit'}
+ def test_get_license_detections_and_expression_two_names_only(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0'}},
+ {'license': {'name': 'mit'}}
]
- _detections, result = get_license_detections_and_expression(declared_license)
- expected = 'apache-2.0 AND mit'
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_with_unknown_url(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0', 'url': 'unknown'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_with_unknown_url_known_comments(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0', 'url': 'unknown', 'comments': 'apache-2.0'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_with_unknown_url_unknown_comments(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0', 'url': 'unknown', 'comments': 'unknown'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_unknown_name(self):
+ extracted_license_statement = [
+ {'license': {'name': 'unknown', 'url': 'apache-2.0'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_same_name_and_url(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0', 'url': 'apache-2.0'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_same_name_url_comments(self):
+ extracted_license_statement = [
+ {'license': {'name': 'apache-2.0', 'url': 'apache-2.0', 'comments': 'apache-2.0'}},
+ {'license': {'name': 'mit'}}
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'apache-2.0 AND mit'
+
+ def test_get_license_detections_and_expression_with_url_invalid(self):
+ extracted_license_statement = [
+ {'license': {'name': 'MIT', 'url': 'LICENSE.txt'}},
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ assert result == 'mit'
+
+ def test_get_license_detections_and_expression_with_duplicated_license(self):
+ extracted_license_statement = [
+ {'license': {'name': 'LGPL'}},
+ {'license': {'name': 'GNU Lesser General Public License', 'url': 'http://www.gnu.org/licenses/lgpl.html'}},
+ ]
+ _detections, result = get_license_detections_and_expression(
+ extracted_license_statement=extracted_license_statement,
+ datasource_id=maven.MavenPackageData.datasource_id,
+ )
+ expected = 'lgpl-2.0-plus AND lgpl-2.1-plus'
assert result == expected
- def test_get_license_detections_tree_nodes(self):
+
+class TestMavenLicenseDetectionInPOM(BaseMavenCase):
+ test_data_dir = os.path.join(os.path.dirname(__file__), 'data')
+
+ def test_package_dependency_not_missing(self):
+ test_file = self.get_test_loc('maven2/log4j/log4j-pom.xml')
+ self.check_parse_to_package(test_file, regen=REGEN_TEST_FIXTURES)
+
+
+class TestPlainGetLicenseDetections(testcase.FileBasedTesting):
+ test_data_dir = os.path.join(os.path.dirname(__file__), 'data')
+
+ def test_get_license_detections_two_names_only(self):
declared_license = [
{'name': 'apache-2.0'},
{'name': 'mit'}
diff --git a/tests/packagedcode/test_plugin_package.py b/tests/packagedcode/test_plugin_package.py
index 0d558e4297..77fe034dba 100644
--- a/tests/packagedcode/test_plugin_package.py
+++ b/tests/packagedcode/test_plugin_package.py
@@ -80,7 +80,7 @@ def test_package_command_scan_haxe(self):
check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES)
def test_package_command_scan_maven(self):
- test_dir = self.get_test_loc('maven2')
+ test_dir = self.get_test_loc('plugin/maven')
result_file = self.get_temp_file('json')
expected_file = self.get_test_loc('plugin/maven-package-expected.json')
run_scan_click(['--package', '--strip-root', '--processes', '-1', test_dir, '--json', result_file])
@@ -93,20 +93,6 @@ def test_package_command_scan_npm(self):
run_scan_click(['--package', '--strip-root', '--processes', '-1', test_dir, '--json', result_file])
check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES)
- def test_package_command_scan_maven_with_license(self):
- test_dir = self.get_test_loc('maven2')
- result_file = self.get_temp_file('json')
- expected_file = self.get_test_loc('plugin/maven-package-with-license-expected.json')
- run_scan_click(['--package', '--strip-root', '--processes', '-1', test_dir, '--json', result_file])
- check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES)
-
- def test_package_command_scan_npm_with_license(self):
- test_dir = self.get_test_loc('npm/package')
- result_file = self.get_temp_file('json')
- expected_file = self.get_test_loc('plugin/npm-package-with-license-expected.json')
- run_scan_click(['--package', '--strip-root', '--processes', '-1', test_dir, '--json', result_file])
- check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES)
-
def test_package_command_scan_nuget(self):
test_dir = self.get_test_loc('nuget/package')
result_file = self.get_temp_file('json')
diff --git a/tests/summarycode/data/classify/with_package_data.expected.json b/tests/summarycode/data/classify/with_package_data.expected.json
index c8009a4b1e..6fec63a20c 100644
--- a/tests/summarycode/data/classify/with_package_data.expected.json
+++ b/tests/summarycode/data/classify/with_package_data.expected.json
@@ -44,7 +44,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1379.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1379.RULE",
- "matched_text": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: Apache License, version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-1096ecf3-d346-9d22-51d7-abc4e11a8ad0"
@@ -53,7 +53,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.jboss.logging/jboss-logging@3.4.2.Final?classifier=sources"
@@ -668,7 +668,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1379.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1379.RULE",
- "matched_text": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: Apache License, version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-1096ecf3-d346-9d22-51d7-abc4e11a8ad0"
@@ -677,7 +677,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.jboss.logging/jboss-logging@3.4.2.Final?classifier=sources"
diff --git a/tests/summarycode/data/score/jar-expected.json b/tests/summarycode/data/score/jar-expected.json
index 10ebd64429..dfcecef2c6 100644
--- a/tests/summarycode/data/score/jar-expected.json
+++ b/tests/summarycode/data/score/jar-expected.json
@@ -56,7 +56,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1379.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1379.RULE",
- "matched_text": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: Apache License, version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-1096ecf3-d346-9d22-51d7-abc4e11a8ad0"
@@ -65,7 +65,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.jboss.logging/jboss-logging@3.4.2.Final?classifier=sources"
@@ -886,7 +886,7 @@
"rule_relevance": 100,
"rule_identifier": "apache-2.0_1379.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1379.RULE",
- "matched_text": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt"
+ "matched_text": "name: Apache License, version 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"identifier": "apache_2_0-1096ecf3-d346-9d22-51d7-abc4e11a8ad0"
@@ -895,7 +895,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
+ "extracted_license_statement": "- license:\n name: Apache License, version 2.0\n url: http://www.apache.org/licenses/LICENSE-2.0.txt\n",
"notice_text": null,
"source_packages": [
"pkg:maven/org.jboss.logging/jboss-logging@3.4.2.Final?classifier=sources"
diff --git a/tests/summarycode/data/tallies/packages/expected.json b/tests/summarycode/data/tallies/packages/expected.json
index e1cadcd0eb..a0c2358bf8 100644
--- a/tests/summarycode/data/tallies/packages/expected.json
+++ b/tests/summarycode/data/tallies/packages/expected.json
@@ -44,7 +44,7 @@
"rule_relevance": 70,
"rule_identifier": "public-domain_bare_words.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
+ "matched_text": "name: Public Domain"
}
],
"identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77"
@@ -53,7 +53,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n",
+ "extracted_license_statement": "- license:\n name: Public Domain\n",
"notice_text": null,
"source_packages": [
"pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"
@@ -1234,7 +1234,7 @@
"rule_relevance": 70,
"rule_identifier": "public-domain_bare_words.RULE",
"rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_bare_words.RULE",
- "matched_text": "- name: Public Domain"
+ "matched_text": "name: Public Domain"
}
],
"identifier": "public_domain-3dd945ae-65df-7d90-6467-60f8ecf2eb77"
@@ -1243,7 +1243,7 @@
"other_license_expression": null,
"other_license_expression_spdx": null,
"other_license_detections": [],
- "extracted_license_statement": "- name: Public Domain\n",
+ "extracted_license_statement": "- license:\n name: Public Domain\n",
"notice_text": null,
"source_packages": [
"pkg:maven/aopalliance/aopalliance@1.0?classifier=sources"